RCS.WebMvc.csproj
3.31 KB
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<UserSecretsId>b4254ba6-09e3-4e53-a2ac-bdff72f56e69</UserSecretsId>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>bin\Debug\netcoreapp2.2</OutputPath>
<DocumentationFile>bin\Debug\netcoreapp2.2\WebMvc.xml</DocumentationFile>
<NoWarn>1701;1702;1591;0219;1573</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<OutputPath>bin\Debug\netcoreapp2.2</OutputPath>
<DocumentationFile>bin\Debug\netcoreapp2.2\WebMvc.xml</DocumentationFile>
<NoWarn>1701;1702;1591;0219;1573</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;1591;0219;1573</NoWarn>
<DocumentationFile>bin\Release\netcoreapp2.2\WebMvc.xml</DocumentationFile>
<OutputPath>bin\Release\netcoreapp2.2</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<NoWarn>1701;1702;1591;0219;1573</NoWarn>
<DocumentationFile>bin\Release\netcoreapp2.2\WebMvc.xml</DocumentationFile>
<OutputPath>bin\Release\netcoreapp2.2</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="9.0.0" />
<PackageReference Include="Azure.Identity" Version="1.12.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.7" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.61.3" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="8.0.2" />
<PackageReference Include="Quartz" Version="3.11.0" />
<PackageReference Include="Quartz.AspNetCore" Version="3.11.0" />
<PackageReference Include="Quartz.Extensions.DependencyInjection" Version="3.11.0" />
<PackageReference Include="Quartz.Extensions.Hosting" Version="3.11.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.7" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="6.6.2" />
<PackageReference Include="System.Formats.Asn1" Version="8.0.1" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\RCS.Infrastructure\RCS.Infrastructure.csproj" />
<ProjectReference Include="..\RCS.Model\RCS.Model.csproj" />
<ProjectReference Include="..\RCS.WebApp\RCS.WebApp.csproj" />
<ProjectReference Include="..\RCS.WebRepository\RCS.WebRepository.csproj" />
</ItemGroup>
<ItemGroup>
<Content Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Folder Include="Hubs\" />
</ItemGroup>
<ProjectExtensions>
<VisualStudio>
<UserProperties appsettings_1json__JsonSchema="" />
</VisualStudio>
</ProjectExtensions>
</Project>