-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathCommand.csproj
32 lines (27 loc) · 1.1 KB
/
Command.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
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>latest</LangVersion>
<PublishAot>true</PublishAot>
<PublishReadyToRun>true</PublishReadyToRun>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
<PropertyGroup Label="Package">
<Version>2.12.1</Version>
<Authors>Adrian Stutz (sttz.ch)</Authors>
<Product>install-unity CLI</Product>
<Description>CLI for install-unity unofficial Unity installer library</Description>
<Copyright>Copyright © Adrian Stutz. All rights Reserved</Copyright>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<RepositoryUrl>https://github.com/sttz/install-unity</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>CLI;Unity;Installer</PackageTags>
</PropertyGroup>
<ItemGroup>
<TrimmerRootAssembly Include="sttz.InstallUnity" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\sttz.InstallUnity\sttz.InstallUnity.csproj" />
</ItemGroup>
</Project>