Skip to content

Commit f59cee5

Browse files
committed
Update .NET Framework references to 4.8
1 parent c673b7c commit f59cee5

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

Interfaces/Interfaces.csproj

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -10,8 +10,9 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>Interfaces</RootNamespace>
1212
<AssemblyName>Interfaces</AssemblyName>
13-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
15+
<TargetFrameworkProfile />
1516
</PropertyGroup>
1617
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1718
<DebugSymbols>true</DebugSymbols>
@@ -21,6 +22,7 @@
2122
<DefineConstants>DEBUG;TRACE</DefineConstants>
2223
<ErrorReport>prompt</ErrorReport>
2324
<WarningLevel>4</WarningLevel>
25+
<Prefer32Bit>false</Prefer32Bit>
2426
</PropertyGroup>
2527
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2628
<DebugType>pdbonly</DebugType>
@@ -29,6 +31,7 @@
2931
<DefineConstants>TRACE</DefineConstants>
3032
<ErrorReport>prompt</ErrorReport>
3133
<WarningLevel>4</WarningLevel>
34+
<Prefer32Bit>false</Prefer32Bit>
3235
</PropertyGroup>
3336
<ItemGroup>
3437
<Reference Include="System" />

UnpackShell/UnpackShell.csproj

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
@@ -10,8 +10,9 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>UnpackShell</RootNamespace>
1212
<AssemblyName>GUS</AssemblyName>
13-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14-
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
13+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
14+
<TargetFrameworkProfile>
15+
</TargetFrameworkProfile>
1516
<FileAlignment>512</FileAlignment>
1617
<PublishUrl>publish\</PublishUrl>
1718
<Install>true</Install>
@@ -39,6 +40,7 @@
3940
<ErrorReport>prompt</ErrorReport>
4041
<WarningLevel>4</WarningLevel>
4142
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
43+
<Prefer32Bit>false</Prefer32Bit>
4244
</PropertyGroup>
4345
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
4446
<PlatformTarget>x86</PlatformTarget>
@@ -49,6 +51,7 @@
4951
<ErrorReport>prompt</ErrorReport>
5052
<WarningLevel>4</WarningLevel>
5153
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
54+
<Prefer32Bit>false</Prefer32Bit>
5255
</PropertyGroup>
5356
<ItemGroup>
5457
<Reference Include="System" />
@@ -155,6 +158,9 @@
155158
<Install>true</Install>
156159
</BootstrapperPackage>
157160
</ItemGroup>
161+
<ItemGroup>
162+
<None Include="app.config" />
163+
</ItemGroup>
158164
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
159165
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
160166
Other similar extension points exist, see Microsoft.Common.targets.
@@ -163,4 +169,4 @@
163169
<Target Name="AfterBuild">
164170
</Target>
165171
-->
166-
</Project>
172+
</Project>

UnpackShell/app.config

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup></configuration>

0 commit comments

Comments
 (0)