Skip to content

Commit

Permalink
Update Getting Started to .NET 4.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarino-preemptive committed Apr 3, 2019
1 parent e07af22 commit a157c83
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
14 changes: 10 additions & 4 deletions GettingStarted/GettingStarted.csproj
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<ProjectGuid>{61141884-4A8A-41FA-B7C6-AB84EF715212}</ProjectGuid>
Expand All @@ -7,7 +7,8 @@
<AssemblyName>GettingStarted</AssemblyName>
<OutputType>WinExe</OutputType>
<RootNamespace>GettingStarted</RootNamespace>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<OutputPath>bin\Debug\</OutputPath>
Expand All @@ -16,6 +17,7 @@
<FileAlignment>4096</FileAlignment>
<Optimize>false</Optimize>
<RegisterForComInterop>false</RegisterForComInterop>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>bin\Release\</OutputPath>
Expand All @@ -24,6 +26,7 @@
<FileAlignment>4096</FileAlignment>
<Optimize>true</Optimize>
<RegisterForComInterop>false</RegisterForComInterop>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System">
Expand All @@ -50,6 +53,9 @@
<DependentUpon>HelloWorldForm.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

<!-- Set build properties for Dotfuscator -->
Expand All @@ -67,8 +73,8 @@
<DotfuscatorEnabled Condition="'$(Configuration)' == 'Release'">true</DotfuscatorEnabled>

</PropertyGroup>

<!-- Import the Dotfuscator MSBuild targets last -->
<Import Project="$(DotfuscatorMSBuildDir)\PreEmptive.Dotfuscator.Common.targets" />

</Project>
</Project>
3 changes: 3 additions & 0 deletions GettingStarted/app.config
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2"/></startup></configuration>

0 comments on commit a157c83

Please sign in to comment.