forked from BeyondDimension/SteamTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathST.Client.UnitTest.csproj
More file actions
43 lines (38 loc) · 1.58 KB
/
ST.Client.UnitTest.csproj
File metadata and controls
43 lines (38 loc) · 1.58 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>System.Application</RootNamespace>
<DefineConstants>UnitTest;$(DefineConstants)</DefineConstants>
<AssemblyName>System.Application.SteamTools.Client.UnitTest</AssemblyName>
<IsPackable>false</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\src\Common.CoreLib\Properties\AssemblyInfo.cs">
<Link>Properties\AssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\..\src\Common.CoreLib\Properties\AssemblyInfo.Version.cs">
<Link>Properties\AssemblyInfo.Version.cs</Link>
</Compile>
<Compile Include="..\Common.UnitTest\Logging\NUnitLogger.cs">
<Link>Logging\NUnitLogger.cs</Link>
</Compile>
<Compile Include="..\Common.UnitTest\Logging\NUnitLoggerProvider.cs">
<Link>Logging\NUnitLoggerProvider.cs</Link>
</Compile>
<Compile Include="..\Common.UnitTest\Utils\Serializable2.cs">
<Link>Utils\Serializable2.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\ST.Client\ST.Client.csproj" />
<ProjectReference Include="..\..\src\Common.CoreLib\Common.CoreLib.csproj" />
<ProjectReference Include="..\ST.Client.UnitTest.Resources\ST.Client.UnitTest.Resources.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NUnit" />
<PackageReference Include="NUnit3TestAdapter" />
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="Moq" />
</ItemGroup>
</Project>