MaiTouchSensorEmulator/WpfMaiTouchEmulator.csproj

83 lines
2.7 KiB
XML
Raw Normal View History

2024-02-08 12:41:21 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
2024-06-17 17:48:43 +08:00
<ApplicationIcon>Assets\icon.ico</ApplicationIcon>
2024-02-08 12:41:21 +08:00
</PropertyGroup>
<ItemGroup>
<None Remove="Assets\conicalGradient.png" />
</ItemGroup>
2024-06-17 17:48:43 +08:00
<ItemGroup>
<Content Include="Assets\icon.ico" />
</ItemGroup>
2024-02-08 12:41:21 +08:00
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="8.0.1" />
<PackageReference Include="System.IO.Ports" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<Resource Include="Assets\conicalGradient.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
</ItemGroup>
2024-02-08 16:46:57 +08:00
<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
2024-04-24 17:40:10 +08:00
<Compile Update="Resources\Strings.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Strings.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\Strings.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
</EmbeddedResource>
2024-02-08 16:46:57 +08:00
</ItemGroup>
<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<None Update="thirdparty programs\com0com\com0com.cat">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="thirdparty programs\com0com\com0com.inf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="thirdparty programs\com0com\com0com.sys">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="thirdparty programs\com0com\ReadMe.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="thirdparty programs\com0com\setup.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="thirdparty programs\com0com\setupc.exe">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="thirdparty programs\com0com\setupg.exe">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="thirdparty programs\com0com\uninstall.exe">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
2024-02-08 16:46:57 +08:00
</ItemGroup>
2024-02-08 12:41:21 +08:00
</Project>