-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathYCodeLabDBTest.csproj
More file actions
39 lines (35 loc) · 1.66 KB
/
Copy pathYCodeLabDBTest.csproj
File metadata and controls
39 lines (35 loc) · 1.66 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<AssemblyName>YCodeLab.Test</AssemblyName>
<RootNamespace>YCodeLab.DB.Test</RootNamespace>
<Nullable>enable</Nullable>
<RunSettingsFilePath>.runsettings</RunSettingsFilePath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " />
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DefineConstants></DefineConstants>
<DocumentationFile></DocumentationFile>
<DefineConstants></DefineConstants>
<DocumentationFile></DocumentationFile>
<AssemblyName></AssemblyName>
<NoWarn>1701;1702</NoWarn>
<AllowUnsafeBlocks></AllowUnsafeBlocks>
<CheckForOverflowUnderflow></CheckForOverflowUnderflow>
<NoWarn>1701;1702</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
<PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.2.0" />
<PackageReference Include="Serilog" Version="2.9.0" />
<PackageReference Include="Serilog.Extensions.Logging" Version="3.0.1" />
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\YCodeLabDB\YCodeLabDB.csproj" />
<ProjectReference Include="..\YCodeLabDBFactory\YCodeLabDBFactory.csproj" />
<ProjectReference Include="..\DevDBSetup\DevDBSetup.csproj" />
</ItemGroup>
</Project>