Skip to content

Commit

Permalink
Updated to target just netstandard2.0 (#247)
Browse files Browse the repository at this point in the history
+semver: feature
  • Loading branch information
roryprimrose authored Aug 9, 2022
1 parent 8c5d644 commit 50d7ae3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,6 @@ jobs:
with:
dotnet-version: '3.1.x' # SDK Version to use.

- name: Setup dotnet v5.0
uses: actions/setup-dotnet@v2
with:
dotnet-version: '5.x' # SDK Version to use.

- name: Setup dotnet v6.0
uses: actions/setup-dotnet@v2
with:
Expand Down
6 changes: 3 additions & 3 deletions ModelBuilder.UnitTests/ModelBuilder.UnitTests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
<CodeAnalysisRuleSet>..\Solution Items\UnitTest.ruleset</CodeAnalysisRuleSet>
<NeutralLanguage>en-US</NeutralLanguage>
<LangVersion>latest</LangVersion>
Expand All @@ -17,9 +17,9 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="NodaTime" Version="3.1.0" />
<PackageReference Include="nsubstitute" Version="4.3.0" />
<PackageReference Include="nsubstitute" Version="4.4.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion ModelBuilder/ModelBuilder.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.1;net5.0;net6.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0</TargetFrameworks>

<CodeAnalysisRuleSet>..\Solution Items\Application.ruleset</CodeAnalysisRuleSet>
<NeutralLanguage>en-US</NeutralLanguage>
Expand Down

0 comments on commit 50d7ae3

Please sign in to comment.