Skip to content

Commit

Permalink
.NET 5.0 and self-contained single file
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsingleton committed Nov 27, 2020
1 parent b3cf71d commit ada99c5
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions octoplot.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,20 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<LangVersion>8.0</LangVersion>
<TargetFramework>net5.0</TargetFramework>
<!-- The OS and CPU type you are targeting -->
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<!-- Determine self-contained or framework-dependent -->
<SelfContained>true</SelfContained>
<!-- Enable single file -->
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
<TrimMode>Link</TrimMode>
<PublishReadyToRun>False</PublishReadyToRun>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<AssemblyName>octoplot</AssemblyName>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
<Copyright>© James Singleton</Copyright>
</PropertyGroup>

Expand Down

0 comments on commit ada99c5

Please sign in to comment.