Skip to content

Commit

Permalink
version 0.4.0
Browse files Browse the repository at this point in the history
updated to net5.0
  • Loading branch information
Legion2 committed Nov 12, 2020
1 parent 2c64de5 commit 2a7ac39
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.302
dotnet-version: 5.0.100
- name: Install dependencies
run: dotnet restore
- name: Build
Expand All @@ -23,4 +23,4 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: open-cue-service
path: bin/Release/netcoreapp3.1/win-x64/publish/
path: bin/Release/net5.0/win-x64/publish/
9 changes: 4 additions & 5 deletions open-cue-service.csproj
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<Title>Open CUE Service</Title>
<Version>0.3.2</Version>
<Version>0.4.0</Version>
<Authors>Legion2</Authors>
<Description>HTTP REST API service for Open CUE CLI</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/Legion2/open-cue-service</RepositoryUrl>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>OpenCueService</RootNamespace>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishSingleFile>true</PublishSingleFile>
<PublishReadyToRun>true</PublishReadyToRun>
<PublishReadyToRunShowWarnings>true</PublishReadyToRunShowWarnings>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>

<LangVersion>8.0</LangVersion>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
Expand Down
2 changes: 1 addition & 1 deletion src/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void ConfigureServices(IServiceCollection services)
document.DocumentName = "openapi";
document.Title = "Open CUE Service";
document.Description = "HTTP REST API service for Open CUE CLI";
document.Version = "0.3.2";
document.Version = "0.4.0";
});
}

Expand Down

0 comments on commit 2a7ac39

Please sign in to comment.