-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
53 lines (44 loc) · 2.11 KB
/
Copy pathDirectory.Build.props
File metadata and controls
53 lines (44 loc) · 2.11 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
<Project>
<!-- https://github.com/Keboo/DotnetTemplates/blob/main/templates/Library/NuGet/ -->
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>14</LangVersion>
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
</PropertyGroup>
<PropertyGroup Label="NuGet Details">
<Title>$(ProjectName)</Title>
<Authors>Fachep</Authors>
<Description>Fachep's Windows Presentation Foundation Utilities</Description>
<Copyright>Copyright © 2026-$([System.DateTime]::Now.ToString("yyyy"))</Copyright>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<PackageTags>WPF</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/fachep/Fachep.WpfUtils</RepositoryUrl>
<PackageProjectUrl>https://github.com/fachep/Fachep.WpfUtils</PackageProjectUrl>
</PropertyGroup>
<PropertyGroup Label="SourceLink">
<!--
https://github.com/dotnet/sourcelink
-->
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup>
<ReadmeFile>$(SolutionDir)\README.md</ReadmeFile>
<LicenseFile>$(SolutionDir)\LICENSE</LicenseFile>
<ReadmeFile Condition="Exists('README.md')">README.md</ReadmeFile>
<LicenseFile Condition="Exists('LICENSE')">LICENSE</LicenseFile>
</PropertyGroup>
<ItemGroup Condition="'$(IsPackable)' == true">
<None Include="$(ReadmeFile)" Pack="true" PackagePath="\" />
<None Include="$(LicenseFile)" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>