-
-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathDirectory.Build.Props
More file actions
48 lines (43 loc) · 2.33 KB
/
Directory.Build.Props
File metadata and controls
48 lines (43 loc) · 2.33 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- Please do not delete, move, or rename this file (Directory.build.props); MSbuild will automatically read this file by convention. -->
<!-- https://stackoverflow.com/a/74789660 -->
<Project>
<!-- Version information - Single source of truth -->
<PropertyGroup>
<!-- Important: After changing the version information below, you must refresh the build using the Rebuild Entire Solution feature to reflect the change. -->
<TableClothVersionMajor>1</TableClothVersionMajor>
<TableClothVersionMinor>16</TableClothVersionMinor>
<TableClothVersionPatch>3</TableClothVersionPatch>
<TableClothVersionRevision>0</TableClothVersionRevision>
<!-- Computed versions -->
<TableClothVersion>$(TableClothVersionMajor).$(TableClothVersionMinor).$(TableClothVersionPatch).$(TableClothVersionRevision)</TableClothVersion>
<TableClothSemVer>$(TableClothVersionMajor).$(TableClothVersionMinor).$(TableClothVersionPatch)</TableClothSemVer>
<!-- Standard .NET SDK version properties -->
<Version>$(TableClothSemVer)</Version>
<AssemblyVersion>$(TableClothVersion)</AssemblyVersion>
<FileVersion>$(TableClothVersion)</FileVersion>
</PropertyGroup>
<PropertyGroup>
<SolutionDir Condition="'$(SolutionDir)'==''">$(MSBuildThisFileDirectory)</SolutionDir>
</PropertyGroup>
<!-- Common Metadata -->
<PropertyGroup>
<Authors>TableCloth Contributors</Authors>
<Company>rkttu.com</Company>
<Product>TableCloth</Product>
<Copyright>© 2021-2025 rkttu.com. All rights reserved.</Copyright>
<Trademark>식탁보™</Trademark>
<RepositoryUrl>https://github.com/yourtablecloth/TableCloth</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://yourtablecloth.github.io</PackageProjectUrl>
</PropertyGroup>
<!-- Workaround for https://github.com/dotnet/wpf/issues/11246 -->
<Target Name="FixWpfReferences" AfterTargets="ResolveTargetingPackAssets" Condition="'$(UseWPF)' == 'true'">
<ItemGroup>
<SystemPrivateWindowsCoreRef Include="@(Reference)" Condition="'%(Filename)' == 'System.Private.Windows.Core'" />
<ReferencePath Include="@(SystemPrivateWindowsCoreRef->'%(RootDir)%(Directory)System.Private.Windows.GdiPlus.dll')">
<AssemblyName>System.Private.Windows.GdiPlus</AssemblyName>
</ReferencePath>
</ItemGroup>
</Target>
</Project>