Skip to content

Commit

Permalink
Target .NET 4.5
Browse files Browse the repository at this point in the history
Former-commit-id: 87169e029dadd8af23fefeac092d0b9959b91576
  • Loading branch information
AliveDevil committed Nov 20, 2016
1 parent c0c3af9 commit 7b492c6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions App.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="Ch.Cyberduck.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
<section name="Ch.Cyberduck.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
</sectionGroup>
</configSections>
</configuration>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration>
2 changes: 1 addition & 1 deletion Cyberduck Bootstrapper.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<Variable Name="Autostart" bal:Overridable="yes" Type="numeric" Value="0" />

<Chain>
<PackageGroupRef Id="NetFx40ClientRedist"/>
<PackageGroupRef Id="NetFx45Web"/>
<RollbackBoundary/>
<MsiPackage
Id="Setup"
Expand Down
2 changes: 1 addition & 1 deletion Cyberduck CLI Bundle.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</BootstrapperApplicationRef>
<Variable Name="InstallFolder" Type="string" Value="[ProgramFilesFolder]Cyberduck CLI" />
<Chain>
<PackageGroupRef Id="NetFx40ClientWeb" />
<PackageGroupRef Id="NetFx45Web" />
<RollbackBoundary />
<MsiPackage
Id="Setup"
Expand Down
8 changes: 7 additions & 1 deletion Cyberduck CLI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
<RootNamespace>Ch.Cyberduck</RootNamespace>
<AssemblyName>duck</AssemblyName>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup>
<StartupObject>Ch.Cyberduck.Cli.WindowsTerminal</StartupObject>
Expand All @@ -25,6 +26,7 @@
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>1</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>cli\windows\target</OutputPath>
Expand All @@ -34,6 +36,7 @@
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="Cyberduck.Core">
Expand Down Expand Up @@ -121,6 +124,9 @@
<Name>Windows Core</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets. -->
Expand Down

0 comments on commit 7b492c6

Please sign in to comment.