forked from northwood-studios/LocalAdmin-V2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLocalAdmin V2.csproj
76 lines (69 loc) · 3.48 KB
/
LocalAdmin V2.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
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<DisableWinExeOutputInference>true</DisableWinExeOutputInference>
<TargetFramework Condition="$(RuntimeIdentifier.StartsWith('win', StringComparison.OrdinalIgnoreCase))">net7.0-windows</TargetFramework>
<TargetFramework Condition="!$(RuntimeIdentifier.StartsWith('win', StringComparison.OrdinalIgnoreCase))">net7.0</TargetFramework>
<ApplicationManifest>app.manifest</ApplicationManifest>
<LangVersion>10</LangVersion>
<Nullable>enable</Nullable>
<RootNamespace>LocalAdmin.V2</RootNamespace>
<AssemblyName>LocalAdmin</AssemblyName>
<Product>LocalAdmin V2</Product>
<PackageId>LocalAdmin V2</PackageId>
<Company>Northwood Studios</Company>
<Authors>Łukasz "zabszk" Jurczyk, KernelError</Authors>
<Copyright>Copyright by Łukasz "zabszk" Jurczyk and KernelError, 2019 - 2023</Copyright>
<SuppressAotAnalysisWarnings>true</SuppressAotAnalysisWarnings>
<RootAllApplicationAssemblies>false</RootAllApplicationAssemblies>
<IlcTrimMetadata>true</IlcTrimMetadata>
<IlcGenerateCompleteTypeMetadata>false</IlcGenerateCompleteTypeMetadata>
<IlcDisableReflection>false</IlcDisableReflection>
<IlcGenerateStackTraceData>true</IlcGenerateStackTraceData>
<IlcOptimizationPreference>Speed</IlcOptimizationPreference>
<IlcFoldIdenticalMethodBodies>true</IlcFoldIdenticalMethodBodies>
<Optimize>true</Optimize>
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup>
<!-- Disable automatic generation of version attribute -->
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
</PropertyGroup>
<!-- Linux only exit handling -->
<PropertyGroup Condition="$(RuntimeIdentifier.StartsWith('linux', StringComparison.OrdinalIgnoreCase))">
<DefineConstants>LINUX_SIGNALS</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<PlatformTarget>x64</PlatformTarget>
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup Condition="$(RuntimeIdentifier.StartsWith('linux', StringComparison.OrdinalIgnoreCase))">
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
</ItemGroup>
<PropertyGroup>
<PublishAot>true</PublishAot>
</PropertyGroup>
<ItemGroup>
<Content Include="LICENSE">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="NOTICE-LocalAdmin">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Remove=".editorconfig" />
<None Remove=".gitignore" />
<None Remove="LocalAdmin V2.sln.DotSettings" />
<None Remove="nuget.config" />
<None Remove="Properties\launchSettings.json" />
<None Remove="README.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.IO.Compression.ZipFile" Version="4.3.0" />
<PackageReference Include="Utf8Json" Version="1.3.7" />
</ItemGroup>
</Project>