Skip to content

Commit 9c1bb5a

Browse files
committed
Added net472 as target framework
1 parent c6a6788 commit 9c1bb5a

5 files changed

Lines changed: 7 additions & 5 deletions

File tree

src/SpatialFocus.MethodCache.Sample.Library/SpatialFocus.MethodCache.Sample.Library.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.0</TargetFramework>
4+
<TargetFrameworks>net472;netstandard2.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<ItemGroup>

src/SpatialFocus.MethodCache.SmokeTest/SpatialFocus.MethodCache.SmokeTest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.0</TargetFramework>
4+
<TargetFrameworks>net472;netstandard2.0</TargetFrameworks>
55
<IsPackable>false</IsPackable>
66
</PropertyGroup>
77

src/SpatialFocus.MethodCache.TestAssembly/SpatialFocus.MethodCache.TestAssembly.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.0</TargetFramework>
4+
<TargetFrameworks>net472;netstandard2.0</TargetFrameworks>
55
<DisableFody>true</DisableFody>
66
</PropertyGroup>
77

src/SpatialFocus.MethodCache.Tests/SpatialFocus.MethodCache.Tests.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
4+
<TargetFrameworks>net472;netcoreapp3.1</TargetFrameworks>
55
<DisableFody>true</DisableFody>
6+
<LangVersion>8.0</LangVersion>
67
</PropertyGroup>
78

89
<ItemGroup>
@@ -13,6 +14,7 @@
1314
<PrivateAssets>all</PrivateAssets>
1415
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1516
</PackageReference>
17+
<Reference Include="Microsoft.CSharp" />
1618
</ItemGroup>
1719

1820
<ItemGroup>

src/SpatialFocus.MethodCache/SpatialFocus.MethodCache.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.0</TargetFramework>
4+
<TargetFrameworks>net472;netstandard2.0</TargetFrameworks>
55
<Version>1.0.0-alpha1</Version>
66
<Title>A method caching Fody addin.</Title>
77
<Authors>Dresel,pergerch</Authors>

0 commit comments

Comments
 (0)