Skip to content

Commit

Permalink
Changed target framework to 4.0 to be compatible with old software
Browse files Browse the repository at this point in the history
  • Loading branch information
micdenny committed Sep 12, 2014
1 parent 5dcb721 commit ff02de1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Package/WpfScreenHelper.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>WpfScreenHelper</id>
<version>0.1.0.0</version>
<version>0.2.0.0</version>
<title>Screen Helper for WPF</title>
<authors>Michael Denny, Contributors (see GitHub repo)</authors>
<owners>Michael Denny</owners>
Expand Down
3 changes: 2 additions & 1 deletion Source/WpfScreenHelper/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@
[assembly: Guid("e75f4c20-72a3-4e02-9b94-a0c4e6e9c127")]

// WpfScreenHelper version number: <major>.<minor>.<non-breaking-feature>.<build>
[assembly: AssemblyVersion("0.1.0.0")]
[assembly: AssemblyVersion("0.2.0.0")]

// Note: until version 1.0 expect breaking changes on 0.X versions.

// 0.2.0.0 Changed target framework to 4.0 to be compatible with old software
// 0.1.0.0 Initial
3 changes: 2 additions & 1 deletion Source/WpfScreenHelper/WpfScreenHelper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>WpfScreenHelper</RootNamespace>
<AssemblyName>WpfScreenHelper</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down
2 changes: 1 addition & 1 deletion build.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"C:\Program Files (x86)\MSBuild\12.0\Bin\amd64\msbuild.exe" "Source\WpfScreenHelper.sln" /property:Configuration=Release;OutDir=..\..\bin

rmdir /S /Q Package\lib >nul 2>&1
xcopy bin\*.* Package\lib\net45 /E /I /R /Y
xcopy bin\*.* Package\lib\net40 /E /I /R /Y

Tools\NuGet\NuGet.exe pack Package\WpfScreenHelper.nuspec -OutputDirectory Package

Expand Down

0 comments on commit ff02de1

Please sign in to comment.