-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathReMOSD.csproj
31 lines (24 loc) · 1.01 KB
/
ReMOSD.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">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net462</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<PublishRelease>true</PublishRelease>
<GenerateSupportedRuntime>false</GenerateSupportedRuntime>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<InvariantGlobalization>true</InvariantGlobalization>
<Deterministic>true</Deterministic>
<DebugType Condition="'$(Configuration)' == 'Release'">none</DebugType>
<OutputPath>bin</OutputPath>
<PublishDir>bin</PublishDir>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<NoWarn>PInvoke009</NoWarn> <!-- Missing reference to recommended package: "System.Memory" -->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.183">
<IncludeAssets>build</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>