-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSocialVeterinarySurgeon.csproj
More file actions
53 lines (45 loc) · 2.11 KB
/
SocialVeterinarySurgeon.csproj
File metadata and controls
53 lines (45 loc) · 2.11 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Content Remove="appsettings.Debug.json" />
<Content Remove="appsettings.Release.json" />
</ItemGroup>
<ItemGroup>
<None Include="appsettings.Debug.json">
<IsTransformFile>true</IsTransformFile>
<DependentUpon>appsettings.json</DependentUpon>
</None>
<None Include="appsettings.Release.json">
<IsTransformFile>true</IsTransformFile>
<DependentUpon>appsettings.json</DependentUpon>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="16.1.1" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="3.1.6" />
<PackageReference Include="Microsoft.VisualStudio.SlowCheetah" Version="3.2.26">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="3.1.2" />
<PackageReference Include="Serilog" Version="2.9.0" />
<PackageReference Include="Serilog.AspNetCore" Version="3.2.0" />
<PackageReference Include="Serilog.Extensions.Logging" Version="3.0.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.5.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SocialVeterinarySurgeon.BL\SocialVeterinarySurgeon.BL.csproj" />
<ProjectReference Include="..\SocialVeterinarySurgeon.DAL\SocialVeterinarySurgeon.DAL.csproj" />
<ProjectReference Include="..\SocialVeterinarySurgeon.Domain\SocialVeterinarySurgeon.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<Content Update="appsettings.json">
<TransformOnBuild>true</TransformOnBuild>
</Content>
</ItemGroup>
</Project>