-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAxion.Testing.csproj
More file actions
37 lines (32 loc) · 1.24 KB
/
Axion.Testing.csproj
File metadata and controls
37 lines (32 loc) · 1.24 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net6.0</TargetFramework>
<GenerateProgramFile>false</GenerateProgramFile>
<Authors>Ilya Nikitin</Authors>
<Company>Fluctus Technologies</Company>
<Product>Axion</Product>
<PackageId>Axion</PackageId>
<Version>1.0.0.0</Version>
<AssemblyName>Axion.Testing</AssemblyName>
<RootNamespace>Axion.Testing</RootNamespace>
<ProjectGuid>{61D72E66-C571-44BE-BC6C-08192B34037D}</ProjectGuid>
<Nullable>enable</Nullable>
<LangVersion>10</LangVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Axion.Core\Axion.Core.csproj" />
<ProjectReference Include="..\Axion.Emitter.Axion\Axion.Emitter.Axion.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="NUnit" Version="3.13.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.0" />
</ItemGroup>
<ItemGroup>
<Compile Remove="test-files\**" />
</ItemGroup>
<ItemGroup>
<None Remove="test-files\**" />
</ItemGroup>
</Project>