-
Notifications
You must be signed in to change notification settings - Fork 19
/
Directory.Build.props
25 lines (24 loc) · 1.2 KB
/
Directory.Build.props
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
<Project>
<!-- NuGet Metadata -->
<PropertyGroup>
<PackageProjectUrl>https://sutil.dev</PackageProjectUrl>
<RepositoryUrl>https://github.com/davedawkins/Sutil</RepositoryUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>sutil-logo.png</PackageIcon>
<PackageTags>fsharp;fable;f#;javascript;js</PackageTags>
<Authors>David Dawkins</Authors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- For SourceLink. See: https://github.com/dotnet/sourcelink#using-source-link-in-net-projects -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)\sutil-logo.png" Pack="true" Visible="false" PackagePath="" />
<None Include="$(MSBuildThisFileDirectory)\LICENSE" Visible="false" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
</Project>