-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
26 lines (26 loc) · 1.37 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
<Project>
<PropertyGroup>
<TargetFrameworks>net461;netstandard2.0;net5.0</TargetFrameworks>
<RootNamespace>SIL.IDLImporterTool</RootNamespace>
<Configurations>Debug;Release</Configurations>
<Company>SIL International</Company>
<Authors>SIL International</Authors>
<Product>IDLImporter</Product>
<Copyright>Copyright © 2002-2022 SIL International</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/sillsdev/IdlImporter</PackageProjectUrl>
<OutputPath>$(MSBuildThisFileDirectory)/output/$(Configuration)/</OutputPath>
<PackageOutputPath>$(MSBuildThisFileDirectory)/output</PackageOutputPath>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)/idlimp.snk</AssemblyOriginatorKeyFile>
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<AppendToReleaseNotesProperty><![CDATA[
See full changelog at https://github.com/sillsdev/IdlImporter/blob/master/CHANGELOG.md]]>
</AppendToReleaseNotesProperty>
<ChangelogFile>$(MSBuildThisFileDirectory)/CHANGELOG.md</ChangelogFile>
<NoWarn>1591</NoWarn>
<UseFullSemVerForNuGet>false</UseFullSemVerForNuGet>
</PropertyGroup>
</Project>