Skip to content

Commit d656208

Browse files
Yeah69Dimitri Enns
authored andcommitted
Previously missed some references to the .Net 4.6 framework
Signed-off-by: Dima Enns <[email protected]>
1 parent b7e8478 commit d656208

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

Sources/LambdaConverters.Deployment/LambdaConverters.Deployment.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>LambdaConverters.Deployment</RootNamespace>
1111
<AssemblyName>LambdaConverters.Deployment</AssemblyName>
12-
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<TargetFrameworkProfile />
1515
</PropertyGroup>

Sources/LambdaConverters.Deployment/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ static void UpdateNuspec([NotNull] string assemblyPath, [NotNull] string nuspecP
114114
Debug.Assert(fileVersionAttributeData.ConstructorArguments[0].Value is string);
115115
versionElement.Value = (string)fileVersionAttributeData.ConstructorArguments[0].Value;
116116

117-
const string target = @"lib\net46";
117+
const string target = @"lib\net45";
118118
nuspec.Root.Element("files")?
119119
.Add(
120120
new XElement("file", new XAttribute("src", assemblyPath), new XAttribute("target", target)),

Sources/LambdaConverters.Deployment/Properties/Settings.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Sources/LambdaConverters.Deployment/app.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<applicationSettings>
99
<LambdaConverters.Deployment.Properties.Settings>
1010
<setting name="SnPath" serializeAs="String">
11-
<value>C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6.1 Tools\sn.exe</value>
11+
<value>C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.5.1 Tools\sn.exe</value>
1212
</setting>
1313
</LambdaConverters.Deployment.Properties.Settings>
1414
</applicationSettings>
15-
</configuration>
15+
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration>

Sources/LambdaConverters.Wpf/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("3.0.0.0")]
35-
[assembly: AssemblyFileVersion("3.0.0")]
34+
[assembly: AssemblyVersion("3.0.2.0")]
35+
[assembly: AssemblyFileVersion("3.0.2")]

Sources/Tests.LambdaConverters.Wpf/Tests.LambdaConverters.Wpf.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<AppDesignerFolder>Properties</AppDesignerFolder>
99
<RootNamespace>Tests.LambdaConverters.Wpf</RootNamespace>
1010
<AssemblyName>Tests.LambdaConverters.Wpf</AssemblyName>
11-
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
11+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1212
<FileAlignment>512</FileAlignment>
1313
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
1414
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>

0 commit comments

Comments
 (0)