Changed back to .NET 4.0

This commit is contained in:
Eric Fontana
2014-08-12 11:14:11 -04:00
parent ab6499bfba
commit a95c7bbea5
3 changed files with 8 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8"?>
<configuration> <configuration>
<startup> <startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
</startup> </startup>
</configuration> </configuration>

View File

@@ -9,8 +9,9 @@
<AppDesignerFolder>Properties</AppDesignerFolder> <AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>TimberWinR.ServiceHost</RootNamespace> <RootNamespace>TimberWinR.ServiceHost</RootNamespace>
<AssemblyName>TimberWinR.ServiceHost</AssemblyName> <AssemblyName>TimberWinR.ServiceHost</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion> <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget> <PlatformTarget>AnyCPU</PlatformTarget>

View File

@@ -48,7 +48,7 @@
Impersonate="yes" Impersonate="yes"
Execute="deferred" Execute="deferred"
ExeCommand='"[INSTALLFOLDER]TimberWinR.ServiceHost.exe" install --autostart -configFile "[CONFIGFILE]" -logDir "[LOGDIR]" -logLevel "[LOGLEVEL]"' ExeCommand='"[INSTALLFOLDER]TimberWinR.ServiceHost.exe" install --autostart -configFile "[CONFIGFILE]" -logDir "[LOGDIR]" -logLevel "[LOGLEVEL]"'
Return='check'> Return='ignore'>
</CustomAction> </CustomAction>
<CustomAction Id="ManagedInstall2" <CustomAction Id="ManagedInstall2"
@@ -56,7 +56,7 @@
Impersonate="yes" Impersonate="yes"
Execute="deferred" Execute="deferred"
ExeCommand='"[INSTALLFOLDER]TimberWinR.ServiceHost.exe" start' ExeCommand='"[INSTALLFOLDER]TimberWinR.ServiceHost.exe" start'
Return='check'> Return='ignore'>
</CustomAction> </CustomAction>
<CustomAction Id="ManagedUnInstall" <CustomAction Id="ManagedUnInstall"
@@ -64,7 +64,7 @@
Impersonate="yes" Impersonate="yes"
Execute="deferred" Execute="deferred"
ExeCommand='"[INSTALLFOLDER]TimberWinR.ServiceHost.exe" uninstall' ExeCommand='"[INSTALLFOLDER]TimberWinR.ServiceHost.exe" uninstall'
Return='check'> Return='ignore'>
</CustomAction> </CustomAction>