mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-08 17:42:31 +02:00
5c5670f0b1
* (Add) Pixel Dimming: Chamfer - Allow the number of walls pixels to be gradually varied as the operation progresses from the starting layer to the ending layer (#106) * (Add) PrusaSlicer print profiles: 0.01, 0.02, 0.03, 0.04, 0.15, 0.2 * (Change) Morph: "Fade" to "Chamfer" naming, created profiles need redo * (Change) Pixel Dimming: Allow start with 0px walls when using "Walls Only" * (Change) PrusaSlicer print profiles names, reduced bottom layers and raft height * (Remove) PrusaSlicer print profiles with 3 digit z precision (0.025 and 0.035) * (Fix) PW0, PWS, PWMX, PWMO, PWMS, PWX file formats, where 4 offsets (16 bytes) were missing on preview image, leading to wrong table size. Previous converted files with UVtools wont open from now on, you need to reconvert them. (ezrec/uv3dp#124) * (Fix) Unable to run Re-Height tool due a rounding problem on some cases (#101) * (Fix) Layer preview end with exception when no per layer settings are available (SL1 case)
121 lines
5.0 KiB
XML
121 lines
5.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<AssemblyName>UVtools</AssemblyName>
|
|
<ApplicationIcon>UVtools.ico</ApplicationIcon>
|
|
<Authors>Tiago Conceição</Authors>
|
|
<Company>PTRTECH</Company>
|
|
<Description>MSLA/DLP, file analysis, repair, conversion and manipulation</Description>
|
|
<Copyright>Copyright © 2020 PTRTECH</Copyright>
|
|
<PackageProjectUrl>https://github.com/sn4k3/UVtools</PackageProjectUrl>
|
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
|
<RepositoryUrl>https://github.com/sn4k3/UVtools</RepositoryUrl>
|
|
<RepositoryType>Git</RepositoryType>
|
|
<Version>1.3.5</Version>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<NoWarn>1701;1702;</NoWarn>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<NoWarn>1701;1702;</NoWarn>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="0.10.0-preview6" />
|
|
<PackageReference Include="Avalonia.Angle.Windows.Natives" Version="2.1.0.2020091801" />
|
|
<PackageReference Include="Avalonia.Controls.DataGrid" Version="0.10.0-preview6" />
|
|
<PackageReference Include="Avalonia.Desktop" Version="0.10.0-preview6" />
|
|
<PackageReference Include="Avalonia.ThemeManager" Version="0.10.0-preview6" />
|
|
<PackageReference Include="Emgu.CV.runtime.ubuntu" Version="4.4.0.4099" />
|
|
<PackageReference Include="Emgu.CV.runtime.windows" Version="4.4.0.4099" />
|
|
<PackageReference Include="MessageBox.Avalonia" Version="0.10.0-prev2" />
|
|
<PackageReference Include="ThemeEditor.Controls.ColorPicker" Version="0.10.0-preview6" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\UVtools.Core\UVtools.Core.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<AvaloniaResource Include="Assets\Icons\*" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Remove="Assets\Icons\clipboard-32x32.png" />
|
|
<None Remove="Assets\Icons\eye-slash-16x16.png" />
|
|
<None Remove="Assets\Icons\layers-alt-32x32.png" />
|
|
<None Remove="Assets\Icons\redo-16x16.png" />
|
|
<None Remove="Assets\Icons\stroopwafel-16x16.png" />
|
|
<None Remove="Assets\Icons\UVtools.ico" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Update="libcvextern.dylib">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="libcvextern.so">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="Assets\Themes\UVtools.themes">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="Assets\Themes\UVtoolsDark.xaml">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="Assets\Themes\UVtoolsLight.xaml">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="UVtools.sh">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="x64\libcvextern.so">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Include="..\CHANGELOG.md" Link="CHANGELOG.md" />
|
|
<None Include="..\CreateRelease.WPF.ps1" Link="CreateRelease.WPF.ps1" />
|
|
<None Include="..\CREDITS.md" Link="CREDITS.md" />
|
|
<None Include="..\LICENSE">
|
|
<Pack>True</Pack>
|
|
<PackagePath></PackagePath>
|
|
</None>
|
|
<None Include="..\README.md" Link="README.md" />
|
|
<None Include="..\UVtools.CAD\UVtools_demo_file.sl1" Link="UVtools_demo_file.sl1">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Update="Controls\AdvancedImageBox.axaml.cs">
|
|
<DependentUpon>AdvancedImageBox.axaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="Controls\Tools\ToolLayerRemoveControl.axaml.cs">
|
|
<DependentUpon>ToolLayerRemoveControl.axaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="Controls\Tools\ToolResizeControl.axaml.cs">
|
|
<DependentUpon>ToolResizeControl.axaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="MainWindow.Clipboard.cs">
|
|
<DependentUpon>%(Filename)</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="MainWindow.Information.cs">
|
|
<DependentUpon>%(Filename)</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="MainWindow.GCode.cs">
|
|
<DependentUpon>%(Filename)</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="MainWindow.LayerPreview.cs">
|
|
<DependentUpon>%(Filename)</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="MainWindow.Log.cs">
|
|
<DependentUpon>%(Filename)</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="MainWindow.Issues.cs">
|
|
<DependentUpon>%(Filename)</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="MainWindow.PixelEditor.cs">
|
|
<DependentUpon>%(Filename)</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="..\PrusaSlicer\**" CopyToOutputDirectory="PreserveNewest" LinkBase="Assets\PrusaSlicer" />
|
|
</ItemGroup>
|
|
</Project>
|