DreamCheekyLED.csproj 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net9.0</TargetFramework>
  4. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  5. <OutputType>Library</OutputType>
  6. <RootNamespace>DreamCheekyUSB</RootNamespace>
  7. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  8. </PropertyGroup>
  9. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  10. <Commandlineparameters>nopause testblink</Commandlineparameters>
  11. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  14. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  15. </PropertyGroup>
  16. <PropertyGroup />
  17. <PropertyGroup>
  18. <StartupObject />
  19. <AssemblyTitle>DreamCheekyLED</AssemblyTitle>
  20. <Company>Greg Bray</Company>
  21. <Product>DreamCheekyLED</Product>
  22. <AssemblyVersion>1.0.0.0</AssemblyVersion>
  23. <FileVersion>1.0.0.0</FileVersion>
  24. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  25. </PropertyGroup>
  26. <ItemGroup>
  27. <Compile Remove="HidSharp\obj\**" />
  28. <EmbeddedResource Remove="HidSharp\obj\**" />
  29. <None Remove="HidSharp\obj\**" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
  33. </ItemGroup>
  34. </Project>