2021-04-02 17:28:07 +05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-12-28 16:35:31 +05:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2021-04-02 17:28:07 +05:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
|
|
|
|
<UserSecretsId>80899ceb-210f-4f19-ac56-aa90a5d666d4</UserSecretsId>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-05-31 12:30:03 +05:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.5" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.SpaServices.Extensions" Version="6.0.5" />
|
|
|
|
|
<PackageReference Include="protobuf-net" Version="3.1.4" />
|
2021-10-31 16:35:09 +05:00
|
|
|
|
<PackageReference Include="protobuf-net.AspNetCore" Version="3.0.101" />
|
2022-05-31 12:30:03 +05:00
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.1" />
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.3.1" />
|
2021-04-02 17:28:07 +05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\AsbCloudApp\AsbCloudApp.csproj" />
|
|
|
|
|
<ProjectReference Include="..\AsbCloudInfrastructure\AsbCloudInfrastructure.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-04-14 13:46:51 +05:00
|
|
|
|
<Content Update="wwwroot\**">
|
2022-01-11 11:46:28 +05:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2022-04-14 13:46:51 +05:00
|
|
|
|
<Content Include="AsbCloudWebApi.service">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2021-09-07 09:49:25 +05:00
|
|
|
|
</ItemGroup>
|
2021-04-02 17:28:07 +05:00
|
|
|
|
</Project>
|