-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
octoplot.csproj
26 lines (23 loc) · 867 Bytes
/
octoplot.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<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.1</Version>
<Copyright>© James Singleton</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.7" />
</ItemGroup>
</Project>