mirror of
https://github.com/snltty/linker.git
synced 2025-12-17 17:06:47 +08:00
73 lines
2.2 KiB
XML
73 lines
2.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>disable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<ApplicationIcon>favicon.ico</ApplicationIcon>
|
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
|
<Configurations>Debug;Release;ReleaseLinux</Configurations>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseLinux|AnyCPU'">
|
|
<DebugType>embedded</DebugType>
|
|
<Optimize>True</Optimize>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="favicon.ico" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="favicon.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\common.libs\common.libs.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="cmonitor.volume.dll">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="nfapi.dll">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="nfdriver.sys">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="./web/**">
|
|
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Remove="Properties\**" />
|
|
<Content Remove="Properties\**" />
|
|
<EmbeddedResource Remove="Properties\**" />
|
|
<None Remove="Properties\**" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MemoryPack" Version="1.9.16" />
|
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.0" />
|
|
<PackageReference Include="NAudio.Wasapi" Version="2.2.1" />
|
|
<PackageReference Include="System.Management" Version="7.0.2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|