-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathS7Packer.csproj
More file actions
57 lines (50 loc) · 2.04 KB
/
Copy pathS7Packer.csproj
File metadata and controls
57 lines (50 loc) · 2.04 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<OutputType>Exe</OutputType>
<GenerateAssemblyInfo>True</GenerateAssemblyInfo>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
<CleanBeforeBuild>True</CleanBeforeBuild>
<BuiltInComInteropSupport>False</BuiltInComInteropSupport>
<IncludeNativeLibrariesForSelfExtract>True</IncludeNativeLibrariesForSelfExtract>
<PublishTrimmed>True</PublishTrimmed>
<PublishAot>True</PublishAot>
<PublishSingleFile>True</PublishSingleFile>
<SelfContained>True</SelfContained>
<DebugType>none</DebugType>
<InvariantGlobalization>True</InvariantGlobalization>
<EnableCompressionInSingleFile>True</EnableCompressionInSingleFile>
<StripSymbols>True</StripSymbols>
<DebuggerSupport>False</DebuggerSupport>
<EnableUnsafeBinaryFormatterSerialization>False</EnableUnsafeBinaryFormatterSerialization>
<EnableUnsafeUTF7Encoding>False</EnableUnsafeUTF7Encoding>
<MetadataUpdaterSupport>False</MetadataUpdaterSupport>
<MetricsSupport>False</MetricsSupport>
<XmlResolverIsNetworkingEnabledByDefault>False</XmlResolverIsNetworkingEnabledByDefault>
</PropertyGroup>
<PropertyGroup>
<NoWin32Manifest>True</NoWin32Manifest>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>favicon.ico</ApplicationIcon>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<NuGetAudit>False</NuGetAudit>
<Authors>Eisenmonoxid</Authors>
<Version>1</Version>
<Company>Eisenmonoxid</Company>
</PropertyGroup>
<ItemGroup>
<Content Include="favicon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.IO.Hashing" Version="10.0.1"/>
</ItemGroup>
</Project>