-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
55 lines (46 loc) · 2.3 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<Project>
<PropertyGroup>
<Version>2.3.0</Version>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Amarok</RootNamespace>
<LangVersion>Latest</LangVersion>
<NoWarn>($NoWarn);NETSDK1138</NoWarn>
</PropertyGroup>
<PropertyGroup>
<Authors>Olaf Kober</Authors>
<Description>A fast and light-weight implementation of the observer pattern that supports synchronous and asynchronous invocation and/or subscribers. A potential replacement for regular .NET events.</Description>
<Copyright>Copyright (c) 2018, Olaf Kober</Copyright>
</PropertyGroup>
<PropertyGroup>
<RootDir>$([MSBuild]::NormalizeDirectory($(MSBuildThisFileDirectory)))</RootDir>
</PropertyGroup>
<PropertyGroup>
<OutputPath>$(RootDir)bin\lib</OutputPath>
<PackageOutputPath>$(RootDir)out</PackageOutputPath>
<Nullable>Enable</Nullable>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<IsPackable>True</IsPackable>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)src\amarok.snk</AssemblyOriginatorKeyFile>
<PublishRepositoryUrl>True</PublishRepositoryUrl>
<EmbedUntrackedSources>True</EmbedUntrackedSources>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<PropertyGroup Condition="$(MSBuildProjectName.EndsWith('.Tests'))">
<OutputPath>$(RootDir)bin\tests</OutputPath>
<Nullable>Disable</Nullable>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<IsPackable>False</IsPackable>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="$(MSBuildProjectName.EndsWith('.Benchmarks'))">
<OutputPath>$(RootDir)bin\benchmarks</OutputPath>
<Nullable>Disable</Nullable>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<IsPackable>False</IsPackable>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
</PropertyGroup>
</Project>