-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathBet.AspNetCore.Sample.csproj
74 lines (63 loc) · 3.6 KB
/
Bet.AspNetCore.Sample.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<UserSecretsId>2045cfaa-b810-41bd-a6dd-bf1e38502faa</UserSecretsId>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<IsPackable>false</IsPackable>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
<PreserveCompilationReferences>true</PreserveCompilationReferences>
<IdentityUIFrameworkVersion>Bootstrap4</IdentityUIFrameworkVersion>
<IncludeOpenAPIAnalyzers>true</IncludeOpenAPIAnalyzers>
<!-- Enable this if Swagger is including XML comments part of it UI. -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!--- https://github.com/DotNetAnalyzers/StyleCopAnalyzers/issues/2590 -->
<NoWarn>$(NoWarn);SA1649</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CronScheduler.AspNetCore" />
<PackageReference Include="Hellang.Middleware.ProblemDetails" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" />
<PackageReference Include="Bet.Extensions.ML.Sentiment" />
<PackageReference Include="Bet.Extensions.ML.Spam" />
<PackageReference Include="Bet.Extensions.ML.Azure" />
<PackageReference Include="Bet.Extensions.HealthChecks.ML" />
<PackageReference Include="Bet.Extensions.HealthChecks.AzureStorage" />
<PackageReference Include="Bet.Extensions.AzureVault" />
<PackageReference Include="Bet.Extensions.DataProtection" />
<PackageReference Include="Bet.Extensions.Logging" />
<PackageReference Include="Serilog.AspNetCore" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" />
<PackageReference Include="Swashbuckle.AspNetCore.Newtonsoft" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Bet.AspNetCore.AzureStorage\Bet.AspNetCore.AzureStorage.csproj" />
<ProjectReference Include="..\Bet.AspNetCore.HealthChecks\Bet.AspNetCore.HealthChecks.csproj" />
<ProjectReference Include="..\Bet.AspNetCore.Jwt\Bet.AspNetCore.Jwt.csproj" />
<ProjectReference Include="..\Bet.AspNetCore.Logging\Bet.AspNetCore.Logging.csproj" />
<ProjectReference Include="..\Bet.AspNetCore.Middleware\Bet.AspNetCore.Middleware.csproj" />
<ProjectReference Include="..\Bet.AspNetCore.ReCapture\Bet.AspNetCore.ReCapture.csproj" />
<ProjectReference Include="..\Bet.AspNetCore\Bet.AspNetCore.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="MLContent\SentimentModel.zip">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="MLContent\SpamModel.zip">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<PropertyGroup Label="Docker">
<!--https://docs.microsoft.com/en-us/visualstudio/containers/container-msbuild-properties?view=vs-2019-->
<DockerfileFile>../../src/Bet.AspNetCore.Sample/Dockerfile</DockerfileFile>
<PROJECT_PATH>/src/Bet.AspNetCore.Sample/Bet.AspNetCore.Sample.csproj</PROJECT_PATH>
<DockerfileBuildArguments>--build-arg PROJECT_PATH=$(PROJECT_PATH) $(DOCKER_BUILD_ARGS)</DockerfileBuildArguments>
</PropertyGroup>
</Project>