-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathCommand.csproj
More file actions
34 lines (29 loc) · 1.24 KB
/
Copy pathCommand.csproj
File metadata and controls
34 lines (29 loc) · 1.24 KB
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
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net7.0</TargetFrameworks>
<RuntimeIdentifiers>win-x64;osx-x64</RuntimeIdentifiers>
<LangVersion>latest</LangVersion>
<PublishSingleFile>true</PublishSingleFile>
<PublishReadyToRun>true</PublishReadyToRun>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
<PropertyGroup Label="Package">
<Version>2.12.0</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>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<TrimmerRootAssembly Include="sttz.InstallUnity" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\sttz.InstallUnity\sttz.InstallUnity.csproj" />
</ItemGroup>
</Project>