-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathMacross.CommandLine.Tests.csproj
More file actions
35 lines (29 loc) · 1.29 KB
/
Macross.CommandLine.Tests.csproj
File metadata and controls
35 lines (29 loc) · 1.29 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0</TargetFrameworks>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>keypair.snk</AssemblyOriginatorKeyFile>
<Description>Macross Software command-line library tests.</Description>
<Product>Macross.CommandLine.Tests</Product>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup>
<OutputPath>..\..\..\_build\Tests\$(Configuration)\</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="MSTest.TestAdapter" />
<PackageReference Include="MSTest.TestFramework" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Macross.Extensions\Code\Macross.Extensions.csproj" />
<ProjectReference Include="..\Code\Macross.CommandLine.csproj" />
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
</Project>