mirror of https://github.com/ogoun/Zero.git
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.
49 lines
1.6 KiB
49 lines
1.6 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>disable</Nullable>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
<DebugType>embedded</DebugType>
|
|
<ErrorReport>none</ErrorReport>
|
|
<Version>1.0.0.3</Version>
|
|
<Company>Ogoun</Company>
|
|
<Authors>Ogoun</Authors>
|
|
<Copyright>Copyright Ogoun 2022</Copyright>
|
|
<PackageIcon>zero.png</PackageIcon>
|
|
<PackageProjectUrl>https://github.com/ogoun/Zero/wiki</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/ogoun/Zero</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PackageReleaseNotes></PackageReleaseNotes>
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<Optimize>False</Optimize>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<Optimize>False</Optimize>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\zero.png">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Aurigma.GraphicsMill.Core.x64" Version="10.6.29" />
|
|
<PackageReference Include="Microsoft.ML.OnnxRuntime.Managed" Version="1.12.1" />
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.3" />
|
|
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="1.0.0-beta14" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ZeroLevel\ZeroLevel.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|