2021-04-02 17:28:07 +05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
|
|
|
|
<UserSecretsId>80899ceb-210f-4f19-ac56-aa90a5d666d4</UserSecretsId>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-09-06 10:10:36 +05:00
|
|
|
|
<None Remove="AsbCloudWebApi.service" />
|
2021-04-02 17:28:07 +05:00
|
|
|
|
<None Remove="NetRest.service" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-09-06 10:10:36 +05:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="AsbCloudWebApi.service">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-04-02 17:28:07 +05:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="5.0.4" />
|
2021-07-05 09:36:27 +05:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.SpaServices.Extensions" Version="5.0.7" />
|
2021-10-31 16:35:09 +05:00
|
|
|
|
<PackageReference Include="protobuf-net" Version="3.0.101" />
|
|
|
|
|
<PackageReference Include="protobuf-net.AspNetCore" Version="3.0.101" />
|
2021-12-24 15:50:30 +05:00
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.2.3" />
|
2021-04-02 17:28:07 +05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\AsbCloudApp\AsbCloudApp.csproj" />
|
|
|
|
|
<ProjectReference Include="..\AsbCloudInfrastructure\AsbCloudInfrastructure.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Update="wwwroot\index.html">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-09-07 09:49:25 +05:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="wwwroot\admin\" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-11-22 12:06:10 +05:00
|
|
|
|
<ProjectExtensions><VisualStudio><UserProperties appsettings_1json__JsonSchema="" /></VisualStudio></ProjectExtensions>
|
|
|
|
|
|
2021-04-02 17:28:07 +05:00
|
|
|
|
|
|
|
|
|
</Project>
|