25 lines
742 B
XML
25 lines
742 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DokanNet" Version="2.3.0.3" />
|
|
<PackageReference Include="System.Management" Version="8.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="FakeFloppyDrive/**/*.cs" />
|
|
<Compile Remove="obj/**/*.cs" />
|
|
<Compile Remove="bin/**/*.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|