-
-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
92 lines (76 loc) · 4.53 KB
/
Copy pathDirectory.Build.props
File metadata and controls
92 lines (76 loc) · 4.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<Project>
<PropertyGroup>
<!-- Project -->
<TargetFramework>net10.0</TargetFramework>
<Platforms>AnyCPU;x64;ARM64</Platforms>
<Nullable>enable</Nullable>
<!-- Metadata -->
<ProductName>UVtools</ProductName>
<Company>PTRTECH</Company>
<CompanyRDNS>pt.ptrtech</CompanyRDNS>
<Authors>Tiago Conceição, sn4k3</Authors>
<Copyright>Copyright 2020-$([System.DateTime]::Now.ToString(`yyyy`)) © PTRTECH</Copyright>
<Summary>MSLA/DLP, file analysis, calibration, repair, conversion and manipulation</Summary>
<Description>$(Summary)</Description>
<!-- Package -->
<ApplicationIcon>$(MSBuildThisFileDirectory)UVtools.CAD\UVtools.ico</ApplicationIcon>
<PackageIcon>UVtools.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RepositoryUrl>https://github.com/sn4k3/UVtools</RepositoryUrl>
<PackageProjectUrl>https://github.com/sn4k3/UVtools</PackageProjectUrl>
<PackageReleaseNotes>https://github.com/sn4k3/UVtools/releases</PackageReleaseNotes>
<PackageTags>msla, dlp, resin, printer, slicer, 3d printing, image processing, layers</PackageTags>
<RepositoryType>Git</RepositoryType>
<!-- Sign -->
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)UVtools.snk</AssemblyOriginatorKeyFile>
<!-- Set the path map and artifacts path. -->
<PathMap>$(MSBuildProjectDirectory)=$(MSBuildProjectName)</PathMap>
<ArtifactsPath>$(MSBuildThisFileDirectory)artifacts</ArtifactsPath>
<CommonPublishDir>$(MSBuildThisFileDirectory)artifacts\publish</CommonPublishDir>
<!-- Enable Build Acceleration in Visual Studio. -->
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
<!-- Versions -->
<UVtoolsVersion>6.2.1</UVtoolsVersion>
<AvaloniaVersion>12.1.1</AvaloniaVersion>
<!-- MvvmToolkit -->
<MvvmToolkitEnableINotifyPropertyChangingSupport>false</MvvmToolkitEnableINotifyPropertyChangingSupport>
<!-- Other variables -->
<BuildRuntimeCacheFileName>buildruntime.json</BuildRuntimeCacheFileName>
</PropertyGroup>
<!-- GitHub Actions -->
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)UVtools.CAD\UVtools.png" Pack="true" PackagePath="" Visible="false"/>
</ItemGroup>
<Choose>
<When Condition="Exists('$(MSBuildProjectDirectory)\README.md')">
<ItemGroup>
<None Include="$(MSBuildProjectDirectory)\README.md" Pack="true" PackagePath="" Visible="false"/>
</ItemGroup>
</When>
<When Condition="Exists('$(MSBuildThisFileDirectory)README.md')">
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="" Visible="false"/>
</ItemGroup>
</When>
</Choose>
<!-- <Target Name="ShowReservedProperties" AfterTargets="BeforeBuild">-->
<!-- <Message Text=" SolutionName = $(SolutionName)" Importance="high" />-->
<!-- <Message Text=" MSBuildThisFileDirectory = $(MSBuildThisFileDirectory)" Importance="high" />-->
<!-- <Message Text=" MSBuildProjectDirectory = $(MSBuildProjectDirectory)" Importance="high" />-->
<!-- <Message Text=" MSBuildProjectFile = $(MSBuildProjectFile)" Importance="high" />-->
<!-- <Message Text=" MSBuildProjectExtension = $(MSBuildProjectExtension)" Importance="high" />-->
<!-- <Message Text=" MSBuildProjectFullPath = $(MSBuildProjectFullPath)" Importance="high" />-->
<!-- <Message Text=" MSBuildProjectName = $(MSBuildProjectName)" Importance="high" />-->
<!-- <Message Text=" MSBuildBinPath = $(MSBuildBinPath)" Importance="high" />-->
<!-- <Message Text=" MSBuildProjectDefaultTargets = $(MSBuildProjectDefaultTargets)" Importance="high" />-->
<!-- <Message Text=" MSBuildExtensionsPath = $(MSBuildExtensionsPath)" Importance="high" />-->
<!-- <Message Text=" MSBuildStartupDirectory = $(MSBuildStartupDirectory)" Importance="high"/>-->
<!-- </Target>-->
</Project>