aboutsummaryrefslogtreecommitdiff
path: root/src/TestExe/TestExe.csproj
diff options
context:
space:
mode:
Diffstat (limited to 'src/TestExe/TestExe.csproj')
-rw-r--r--src/TestExe/TestExe.csproj7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/TestExe/TestExe.csproj b/src/TestExe/TestExe.csproj
index 933fa932..5a130422 100644
--- a/src/TestExe/TestExe.csproj
+++ b/src/TestExe/TestExe.csproj
@@ -3,15 +3,18 @@
3 3
4<Project Sdk="Microsoft.NET.Sdk"> 4<Project Sdk="Microsoft.NET.Sdk">
5 <PropertyGroup> 5 <PropertyGroup>
6 <TargetFrameworks>net35</TargetFrameworks> 6 <TargetFrameworks>net35;netcoreapp3.1</TargetFrameworks>
7 <AssemblyName>TestExe</AssemblyName> 7 <AssemblyName>TestExe</AssemblyName>
8 <RootNamespace>TestExe</RootNamespace> 8 <RootNamespace>TestExe</RootNamespace>
9 <OutputType>Exe</OutputType> 9 <OutputType>Exe</OutputType>
10 <DebugType>embedded</DebugType> 10 <DebugType>embedded</DebugType>
11 <RuntimeIdentifier>win-x86</RuntimeIdentifier> 11 <RuntimeIdentifier>win-x86</RuntimeIdentifier>
12 <SelfContained>false</SelfContained>
13 <UseAppHost>true</UseAppHost>
14 <RollForward>Major</RollForward>
12 </PropertyGroup> 15 </PropertyGroup>
13 16
14 <ItemGroup> 17 <ItemGroup Condition="'$(TargetFramework)'=='net35'">
15 <Reference Include="System.Management" /> 18 <Reference Include="System.Management" />
16 </ItemGroup> 19 </ItemGroup>
17</Project> \ No newline at end of file 20</Project> \ No newline at end of file