-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
Directory.Build.props
37 lines (37 loc) · 1.95 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
33
34
35
36
37
<Project>
<PropertyGroup>
<TargetFrameworks>net462;net48</TargetFrameworks>
<Configurations>Debug;Release</Configurations>
<Company>SIL International</Company>
<Authors>SIL International</Authors>
<Product>libpalaso</Product>
<Copyright>Copyright © 2010-2024 SIL International</Copyright>
<WarningsAsErrors>NU1605;CS8002</WarningsAsErrors>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<LangVersion>8</LangVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/sillsdev/libpalaso</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<OutputPath>$(MSBuildThisFileDirectory)/output/$(Configuration)</OutputPath>
<PackageOutputPath>$(MSBuildThisFileDirectory)/output</PackageOutputPath>
<SignAssembly>true</SignAssembly>
<!-- required to ensure test projects are marked as packable, otherwise Microsoft.NET.Test.Sdk marks them as not -->
<IsPackable Condition="'$(IsPackable)'==''">true</IsPackable>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)/palaso.snk</AssemblyOriginatorKeyFile>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<AppendToReleaseNotesProperty><![CDATA[
See full changelog at https://github.com/sillsdev/libpalaso/blob/master/CHANGELOG.md]]>
</AppendToReleaseNotesProperty>
<UseFullSemVerForNuGet>false</UseFullSemVerForNuGet>
</PropertyGroup>
<ItemGroup>
<!-- Without this line some projects fail to build on TC with "error : SourceRoot items
must include at least one top-level (not nested) item when DeterministicSourcePaths is
true". See https://github.com/dotnet/roslyn/issues/37379#issuecomment-513371985 -->
<SourceRoot Include="$(MSBuildThisFileDirectory)/"/>
</ItemGroup>
</Project>