-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVSLauncher.csproj
28 lines (24 loc) · 906 Bytes
/
VSLauncher.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<PublishTrimmed>true</PublishTrimmed>
<PublishReadyToRun>true</PublishReadyToRun>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<InvariantGlobalization>true</InvariantGlobalization>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<ApplicationIcon>VSLauncher.ico</ApplicationIcon>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Remove=".gitignore" />
<None Remove="LICENSE" />
<None Remove="README.md" />
<None Remove="VSLauncher.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
</ItemGroup>
</Project>