Skip to content

Commit

Permalink
Use net core 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyrrrz committed Dec 6, 2019
1 parent 2c99e27 commit 83c38f7
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CD.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.0.100
dotnet-version: 3.1.100

- name: Build & publish
run: dotnet publish LightBulb/ -o LightBulb/bin/Publish/ --configuration Release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Install .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.0.100
dotnet-version: 3.1.100

- name: Build & test
run: dotnet test --configuration Release
Expand Down
1 change: 0 additions & 1 deletion LightBulb.Tests/LightBulb.Tests.csproj
Expand Up @@ -2,7 +2,6 @@
<Import Project="../LightBulb.props" />

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
Expand Down
1 change: 0 additions & 1 deletion LightBulb.WindowsApi/LightBulb.WindowsApi.csproj
Expand Up @@ -2,7 +2,6 @@
<Import Project="../LightBulb.props" />

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>

Expand Down
1 change: 1 addition & 0 deletions LightBulb.props
@@ -1,6 +1,7 @@
<Project>

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Version>2.0</Version>
<Company>Tyrrrz</Company>
<Copyright>Copyright (C) Alexey Golub</Copyright>
Expand Down
1 change: 0 additions & 1 deletion LightBulb/LightBulb.csproj
Expand Up @@ -3,7 +3,6 @@

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<UseWPF>true</UseWPF>
<ApplicationIcon>../favicon.ico</ApplicationIcon>
</PropertyGroup>
Expand Down

0 comments on commit 83c38f7

Please sign in to comment.