Skip to content

Commit 5d66186

Browse files
Merge pull request #3 from zippy1981/FrameWorkV2
Target .Net framework 2.0
2 parents d6606f1 + 8447faa commit 5d66186

File tree

4 files changed

+10
-19
lines changed

4 files changed

+10
-19
lines changed

Source/ManagedTest/App.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8" ?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<system.diagnostics>
44
<trace autoflush="true" indentsize="0">
@@ -8,6 +8,6 @@
88
</trace>
99
</system.diagnostics>
1010
<startup>
11-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1" />
12-
</startup>
13-
</configuration>
11+
12+
<supportedRuntime version="v2.0.50727"/></startup>
13+
</configuration>

Source/ManagedTest/ManagedTest.csproj

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>ManagedTest</RootNamespace>
1111
<AssemblyName>ManagedTest</AssemblyName>
12-
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
15+
<TargetFrameworkProfile>
16+
</TargetFrameworkProfile>
1517
</PropertyGroup>
1618
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1719
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -80,12 +82,6 @@
8082
</PropertyGroup>
8183
<ItemGroup>
8284
<Reference Include="System" />
83-
<Reference Include="System.Core" />
84-
<Reference Include="System.Xml.Linq" />
85-
<Reference Include="System.Data.DataSetExtensions" />
86-
<Reference Include="Microsoft.CSharp" />
87-
<Reference Include="System.Data" />
88-
<Reference Include="System.Xml" />
8985
</ItemGroup>
9086
<ItemGroup>
9187
<Compile Include="Program.cs" />

Source/ManagedTest/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System;
22
using System.Collections.Generic;
3-
using System.Linq;
43
using System.Text;
54
using System.Diagnostics;
65

Source/Sysinternals.Debug/Sysinternals.Debug.csproj

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>Sysinternals.Debug</RootNamespace>
1111
<AssemblyName>Sysinternals.Debug</AssemblyName>
12-
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
14+
<TargetFrameworkProfile>
15+
</TargetFrameworkProfile>
1416
</PropertyGroup>
1517
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1618
<DebugSymbols>true</DebugSymbols>
@@ -41,12 +43,6 @@
4143
</PropertyGroup>
4244
<ItemGroup>
4345
<Reference Include="System" />
44-
<Reference Include="System.Core" />
45-
<Reference Include="System.Xml.Linq" />
46-
<Reference Include="System.Data.DataSetExtensions" />
47-
<Reference Include="Microsoft.CSharp" />
48-
<Reference Include="System.Data" />
49-
<Reference Include="System.Xml" />
5046
</ItemGroup>
5147
<ItemGroup>
5248
<Compile Include="GlobalSuppressions.cs" />

0 commit comments

Comments
 (0)