-
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathReloaded.Mod.Installer.csproj
More file actions
61 lines (54 loc) · 2.54 KB
/
Reloaded.Mod.Installer.csproj
File metadata and controls
61 lines (54 loc) · 2.54 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>NET472;net10.0-windows</TargetFrameworks>
<UseWPF>true</UseWPF>
<LangVersion>preview</LangVersion>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AssemblyName>Setup</AssemblyName>
<Nullable>enable</Nullable>
<ApplicationIcon>appicon.ico</ApplicationIcon>
<DisableWinExeOutputInference>true</DisableWinExeOutputInference>
<StartupObject>Reloaded.Mod.Installer.Program</StartupObject>
<DebugType>portable</DebugType>
<_SuppressWpfTrimError>true</_SuppressWpfTrimError>
</PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net10.0-windows'))">
<PublishAot>true</PublishAot>
</PropertyGroup>
<PropertyGroup>
<WeaverConfiguration>
<Weavers>
<Costura IncludeDebugSymbols="false" Condition="'$(TargetFramework)' == 'net472'" />
<PropertyChanged />
</Weavers>
</WeaverConfiguration>
</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="Costura.Fody" Condition="'$(TargetFramework)' == 'net472'" Version="5.7.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="HandyControl" Version="3.2.0" />
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.183">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="System.Memory" Version="4.6.3" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.2" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Reloaded.Mod.Installer.Cli\Reloaded.Mod.Installer.Cli.csproj" />
<ProjectReference Include="..\Reloaded.Mod.Installer.Lib\Reloaded.Mod.Installer.Lib.csproj" />
</ItemGroup>
</Project>