-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathASTCalc.csproj
73 lines (59 loc) · 3 KB
/
ASTCalc.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<InvariantGlobalization>true</InvariantGlobalization>
<UseSystemResourceKeys>true</UseSystemResourceKeys>
<IlcGenerateStackTraceData>false</IlcGenerateStackTraceData>
<IlcTrimMetadata>true</IlcTrimMetadata>
<IlcGenerateCompleteTypeMetadata>false</IlcGenerateCompleteTypeMetadata>
<StackTraceSupport>false</StackTraceSupport>
<IlcDisableReflection>true</IlcDisableReflection>
<OptimizationPreference>Size</OptimizationPreference>
</PropertyGroup>
<PropertyGroup>
<IlcGenerateWin32Resources>false</IlcGenerateWin32Resources>
<IlcGenerateMstatFile>true</IlcGenerateMstatFile>
<IlcGenerateDgmlFile>true</IlcGenerateDgmlFile>
<IlcGenerateMetadataLog>true</IlcGenerateMetadataLog>
<IlcDumpGeneratedIL>true</IlcDumpGeneratedIL>
<InvariantGlobalization>true</InvariantGlobalization>
<EnableUnsafeBinaryFormatterInDesigntimeLicenseContextSerialization>true</EnableUnsafeBinaryFormatterInDesigntimeLicenseContextSerialization>
<SuppressTrimAnalysisWarnings>false</SuppressTrimAnalysisWarnings>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
<ILLinkTreatWarningsAsErrors>false</ILLinkTreatWarningsAsErrors>
<TrimmerSingleWarn>false</TrimmerSingleWarn>
<TrimmerRemoveSymbols>true</TrimmerRemoveSymbols>
<AutoreleasePoolSupport>false</AutoreleasePoolSupport>
<DebuggerSupport>false</DebuggerSupport>
<EnableUnsafeBinaryFormatterSerialization>false</EnableUnsafeBinaryFormatterSerialization>
<EnableUnsafeUTF7Encoding>false</EnableUnsafeUTF7Encoding>
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
<EventSourceSupport>false</EventSourceSupport>
<MetadataUpdaterSupport>false</MetadataUpdaterSupport>
<UseNativeHttpHandler>true</UseNativeHttpHandler>
<UseSystemResourceKeys>true</UseSystemResourceKeys>
<StartupHookSupport>true</StartupHookSupport>
<EnableCppCLIHostActivation>false</EnableCppCLIHostActivation>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(SolutionDir)' != '*Undefined*'">
<Exec Command="dotnet publish "$(ProjectPath)" -o "$(OutDir)\native" -p:PublishAOT=true -r win-x64 --use-current-runtime " />
</Target>
<ItemGroup>
<LinkerArg Include="/opt:ref /opt:icf"></LinkerArg>
<LinkerArg Include="/opt:ref /opt:icf"></LinkerArg>
<LinkerArg Include="/safeseh:no"></LinkerArg>
<LinkerArg Include="/emittoolversioninfo:no"></LinkerArg>
<LinkerArg Include="/emitpogophaseinfo"></LinkerArg>
<LinkerArg Include="/fixed"></LinkerArg>
<LinkerArg Include="/safeseh:no"></LinkerArg>
<LinkerArg Include="/merge:.modules=.rdata"></LinkerArg>
<LinkerArg Include="/merge:.managedcode=.text"></LinkerArg>
<LinkerArg Include="/DEBUGTYPE:CV,PDATA,FIXUP"></LinkerArg>
</ItemGroup>
</Project>