mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-10 02:22:32 +02:00
8948724835
- (Add) Allow to choose custom locations for "Send to" - (Improvement) Better random generation for benchmark - (Fix) Outline - Hollow areas: Not outlining the second closing contour for contours with child - (Fix) Pixel editor - Eraser: It was selecting the whole blob even if have inner parents
28 lines
813 B
XML
28 lines
813 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<Company>PTRTECH</Company>
|
|
<Description>Scripting samples</Description>
|
|
<Authors>Tiago Conceição</Authors>
|
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
|
<PackageProjectUrl>https://github.com/sn4k3/UVtools</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/sn4k3/UVtools</RepositoryUrl>
|
|
<RepositoryType>Git</RepositoryType>
|
|
<Copyright>Copyright © 2020 PTRTECH</Copyright>
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\UVtools.Core\UVtools.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\LICENSE">
|
|
<Pack>True</Pack>
|
|
<PackagePath></PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|