| 12345678910111213141516171819202122232425262728293031323334 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net9.0</TargetFramework>
- <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
- <OutputType>Library</OutputType>
- <RootNamespace>DreamCheekyUSB</RootNamespace>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
- <Commandlineparameters>nopause testblink</Commandlineparameters>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup />
- <PropertyGroup>
- <StartupObject />
- <AssemblyTitle>DreamCheekyLED</AssemblyTitle>
- <Company>Greg Bray</Company>
- <Product>DreamCheekyLED</Product>
- <AssemblyVersion>1.0.0.0</AssemblyVersion>
- <FileVersion>1.0.0.0</FileVersion>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <ItemGroup>
- <Compile Remove="HidSharp\obj\**" />
- <EmbeddedResource Remove="HidSharp\obj\**" />
- <None Remove="HidSharp\obj\**" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
- </ItemGroup>
- </Project>
|