-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappMpower.csproj
31 lines (24 loc) · 1.13 KB
/
appMpower.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<OutputType>Exe</OutputType>
<DefineConstants>NPGSQL</DefineConstants>
<!--<DefineConstants>ODBC</DefineConstants>-->
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TrimMode>link</TrimMode>
<RuntimeIdentifier>osx.11.0-x64</RuntimeIdentifier>
<SuppressTrimAnalysisWarnings>true</SuppressTrimAnalysisWarnings>
<InvariantGlobalization>true</InvariantGlobalization>
<IlcOptimizationPreference>Speed</IlcOptimizationPreference>
<IlcDisableReflection>true</IlcDisableReflection>
<IlcGenerateStackTraceData>false</IlcGenerateStackTraceData>
<UseSystemResourceKeys>true</UseSystemResourceKeys>
<EventSourceSupport>false</EventSourceSupport>
<DebuggerSupport>false</DebuggerSupport>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Npgsql" Version="6.0.0-preview4" />
<PackageReference Include="System.Data.Odbc" Version="6.0.0-preview.4.21253.7" />
<PackageReference Include="Microsoft.DotNet.ILCompiler" Version="6.0.0-*" />
</ItemGroup>
</Project>