-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDirectory.Build.props
32 lines (30 loc) · 1.38 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
26
27
28
29
30
31
32
<Project>
<PropertyGroup>
<TargetFrameworks>net472;netstandard2.0</TargetFrameworks>
<Configurations>Debug;Release</Configurations>
<Company>SIL</Company>
<Authors>SIL Global</Authors>
<Product>Palaso Library</Product>
<Copyright>Copyright © 2018-2024 SIL Global</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/sillsdev/SIL.BuildTasks</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageOutputPath>../output/$(Configuration)</PackageOutputPath>
<AppendToReleaseNotesProperty><![CDATA[
See full changelog at https://github.com/sillsdev/SIL.BuildTasks/blob/master/CHANGELOG.md]]>
</AppendToReleaseNotesProperty>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<UseFullSemVerForNuGet>false</UseFullSemVerForNuGet>
<FilterEntries>true</FilterEntries>
</PropertyGroup>
<ItemGroup>
<SourceRoot Include="$(MSBuildThisFileDirectory)/"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="GitVersion.MsBuild" Version="5.10.3" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
</Project>