Skip to content

Commit

Permalink
Merge pull request #25 from ejcoyle88/feature/fix_sdk_version
Browse files Browse the repository at this point in the history
Feature/fix sdk version
  • Loading branch information
ejcoyle88 authored Jan 24, 2020
2 parents e3a65d9 + 6044c6d commit 9b42cba
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- name: Setup dotnet core 3.0.100 if needed
- name: Setup dotnet core 3.1.101 if needed
uses: actions/[email protected]
with:
dotnet-version: 3.0.100
dotnet-version: 3.1.101
if: matrix.os == 'macOS-latest' || matrix.os == 'ubuntu-latest'
- name: Build & Test
run: |
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ msbuild.wrn

# Visual Studio 2015
.vs/
.idea/
2 changes: 2 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions KnowYourLimits.AspNetCore/KnowYourLimits.AspNetCore.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.0</TargetFrameworks>
<TargetFrameworks>netcoreapp3.0;netcoreapp3.1</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Elliot Coyle</Authors>
<Company />
Expand All @@ -13,12 +13,13 @@
<FileVersion>2.2.0.0</FileVersion>
<AssemblyVersion>2.2.0.0</AssemblyVersion>
<Version>2.3.2</Version>
<PackageVersion>4.0.1</PackageVersion>
<PackageVersion>4.1.0</PackageVersion>
<IsPackable>true</IsPackable>
<OutputType>Library</OutputType>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" />
<PackageReference Include="SecurityCodeScan" Version="3.3.0" />
<PackageReference Include="SecurityCodeScan" Version="3.4.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion KnowYourLimits.UnitTests/KnowYourLimits.UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<ItemGroup>
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
<PackageReference Include="SecurityCodeScan" Version="3.3.0" />
<PackageReference Include="SecurityCodeScan" Version="3.4.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.0'">
Expand Down
4 changes: 2 additions & 2 deletions KnowYourLimits/KnowYourLimits.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
<AssemblyVersion>2.0.1.0</AssemblyVersion>
<FileVersion>2.0.1.0</FileVersion>
<Version>2.1.0</Version>
<PackageVersion>4.0.1</PackageVersion>
<PackageVersion>4.1.0</PackageVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="SecurityCodeScan" Version="3.3.0" />
<PackageReference Include="SecurityCodeScan" Version="3.4.0" />
</ItemGroup>

</Project>

0 comments on commit 9b42cba

Please sign in to comment.