-
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathReloaded.Mod.Installer.Cli.csproj
More file actions
35 lines (29 loc) · 1.35 KB
/
Reloaded.Mod.Installer.Cli.csproj
File metadata and controls
35 lines (29 loc) · 1.35 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
35
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>NET472;net10.0-windows</TargetFrameworks>
<LangVersion>preview</LangVersion>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AssemblyName>Setup-Linux</AssemblyName>
<Nullable>enable</Nullable>
<ApplicationIcon>appicon.ico</ApplicationIcon>
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net10.0-windows'))">
<PublishAot>true</PublishAot>
</PropertyGroup>
<ItemGroup>
<Content Include="appicon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.2.39" PrivateAssets="All" />
<PackageReference Include="ConsoleProgressBar" Version="2.0.0" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Private.Uri" Version="4.3.2" />
<PackageReference Include="System.Text.Json" Version="10.0.0" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Reloaded.Mod.Installer.Lib\Reloaded.Mod.Installer.Lib.csproj" />
</ItemGroup>
</Project>