-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFiresharp.csproj
31 lines (27 loc) · 1.15 KB
/
Firesharp.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
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>Firesharp</AssemblyName>
<PublishDir>.</PublishDir>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<PublishSingleFile>true</PublishSingleFile>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>preview</LangVersion>
<SelfContained>true</SelfContained>
<Nullable>enable</Nullable>
<PublishReadyToRun>true</PublishReadyToRun>
<RuntimeIdentifier Condition=" '$(OS)' == 'Windows_NT' ">win-x64</RuntimeIdentifier>
<RuntimeIdentifier Condition=" '$(OS)' == 'Unix' ">linux-x64</RuntimeIdentifier>
<DebugType>None</DebugType>
<DebugSymbols>false</DebugSymbols>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CliFx" Version="2.2.5" />
<PackageReference Include="CliWrap" Version="3.4.4" />
</ItemGroup>
<Target Name="PostClean" AfterTargets="Clean">
<RemoveDir Directories="$(BaseIntermediateOutputPath)" /><!-- obj -->
<RemoveDir Directories="$(BaseOutputPath)" /><!-- bin -->
</Target>
</Project>