forked from microsoft/TSS.MSR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestSuite.csproj
35 lines (34 loc) · 1.46 KB
/
TestSuite.csproj
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">
<ItemGroup>
<PackageReference Include="BouncyCastle.NetCore" Version="1.8.8" />
<ProjectReference Include="..\..\TSS.NET\TSS.Net\TSS.Net.csproj" />
<ProjectReference Include="..\TestSubstrate\TestSubstrate.csproj" />
</ItemGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<AssemblyName>Tpm2TestSuite</AssemblyName>
<!-- <TargetFrameworks>net472;netcoreapp2.1</TargetFrameworks> -->
<WarningLevel>4</WarningLevel>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Version>20210628</Version>
</PropertyGroup>
<PropertyGroup>
<NixTarget>false</NixTarget>
<NixTarget Condition="$(RuntimeIdentifier.Contains('linux')) Or '$(OS)' == 'Unix' Or '$(OS)' == 'Linux'">true</NixTarget>
<StartupObject>Tpm2TestSuite.Tpm2Tests</StartupObject>
</PropertyGroup>
<PropertyGroup Condition="!($(NixTarget))">
<TargetFramework>net472</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
</PropertyGroup>
<PropertyGroup Condition="$(NixTarget) Or $(TargetFramework.Contains('2.')) Or $(TargetFramework.Contains('3.'))">
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Web" />
</ItemGroup>
</Project>