Skip to content

Commit 48ee1ef

Browse files
committed
Change .NET version of mpu.exe from 3.5 to 4.6.
This is required to async serializer generation, and there are no reasons to remain .NET 3.5 now.
1 parent 9fa7ac0 commit 48ee1ef

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/mpu/mpu.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>mpu</RootNamespace>
1111
<AssemblyName>mpu</AssemblyName>
12-
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
1515
<RestorePackages>true</RestorePackages>
16+
<TargetFrameworkProfile />
1617
</PropertyGroup>
1718
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1819
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -23,6 +24,7 @@
2324
<DefineConstants>DEBUG;TRACE</DefineConstants>
2425
<ErrorReport>prompt</ErrorReport>
2526
<WarningLevel>4</WarningLevel>
27+
<Prefer32Bit>false</Prefer32Bit>
2628
</PropertyGroup>
2729
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2830
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -32,6 +34,7 @@
3234
<DefineConstants>TRACE</DefineConstants>
3335
<ErrorReport>prompt</ErrorReport>
3436
<WarningLevel>4</WarningLevel>
37+
<Prefer32Bit>false</Prefer32Bit>
3538
</PropertyGroup>
3639
<ItemGroup>
3740
<Reference Include="System" />
@@ -53,6 +56,7 @@
5356
<Compile Include="SerializerTargetCompiler.cs" />
5457
</ItemGroup>
5558
<ItemGroup>
59+
<None Include="app.config" />
5660
<None Include="packages.config" />
5761
</ItemGroup>
5862
<ItemGroup>

0 commit comments

Comments
 (0)