You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
852 B
27 lines
852 B
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<OutputType>Exe</OutputType> |
|
<TargetFramework>net5.0</TargetFramework> |
|
<LangVersion>8.0</LangVersion> |
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> |
|
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup> |
|
<DefaultItemExcludes>$(DefaultItemExcludes);lib\**\*</DefaultItemExcludes> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="System.Text.Json" Version="5.0.0" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.21308.1" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include=".\lib\StbImageSharp\src\StbImageSharp.csproj" /> |
|
<ProjectReference Include=".\lib\StbImageWriteSharp\src\StbImageWriteSharp.csproj" /> |
|
</ItemGroup> |
|
</Project>
|
|
|