-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
58 lines (49 loc) · 2.36 KB
/
Copy pathDirectory.Build.props
File metadata and controls
58 lines (49 loc) · 2.36 KB
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
56
57
58
<Project>
<PropertyGroup>
<Version>5.3.0</Version>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>InlayTester</RootNamespace>
<LangVersion>Latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Authors>Olaf Kober</Authors>
<Description>A shared library with a (serial) driver for communicating with RFID readers/modules from FEIG Electronic.</Description>
<Copyright>Copyright (c) 2018, Olaf Kober</Copyright>
</PropertyGroup>
<PropertyGroup>
<CheckEolTargetFramework>False</CheckEolTargetFramework>
<SuppressTfmSupportBuildWarnings>True</SuppressTfmSupportBuildWarnings>
</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.StartsWith('Tests.'))">
<OutputPath>$(RootDir)bin\tests</OutputPath>
<Nullable>Disable</Nullable>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<IsPackable>False</IsPackable>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="$(MSBuildProjectName.StartsWith('Debug.'))">
<OutputPath>$(RootDir)bin\dbgapp</OutputPath>
<Nullable>Disable</Nullable>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<IsPackable>False</IsPackable>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
</PropertyGroup>
</Project>