-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
54 lines (45 loc) · 1.86 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
<?xml version="1.0" encoding="UTF-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--
Copyright 2021-2024 Collabora, Ltd
SPDX-License-Identifier: MIT
-->
<!-- our meta-data details -->
<PropertyGroup>
<!-- this is a must-match value - only the major should be changed. -->
<AssemblyVersion>3.0.0.0</AssemblyVersion>
<Version>3.4.0.0</Version>
<Company>Collabora, Ltd.</Company>
<!-- augment this with license data in individual projects -->
<Copyright>Copyright 2021-2024, $(Company)</Copyright>
<!-- augment this here or in individual projects as appropriate -->
<Authors>Rylie Pavlik (Collabora, Ltd.)</Authors>
<AnalysisMode>Recommended</AnalysisMode>
</PropertyGroup>
<!-- build config -->
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>PrettyRegistryXml</RootNamespace>
</PropertyGroup>
<!-- properties for tests -->
<PropertyGroup Condition="$(MSBuildProjectName.EndsWith('.Tests'))">
<IsPackable>false</IsPackable>
<IsPublishable>false</IsPublishable>
</PropertyGroup>
<!-- properties for not-tests -->
<PropertyGroup Condition="$(MSBuildProjectName.EndsWith('.Tests')) != 'true'">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<!-- dependency versions -->
<PropertyGroup>
<MoreLinqVersion>4.3.0</MoreLinqVersion>
<CommandLineParserVersion>2.9.1</CommandLineParserVersion>
</PropertyGroup>
<!-- test dependency versions -->
<PropertyGroup>
<XunitVersion>2.9.2</XunitVersion>
<XunitRunnerVSVersion>2.8.2</XunitRunnerVSVersion>
<TestSdkVersion>17.11.1</TestSdkVersion>
<CoverletCollectorVersion>6.0.2</CoverletCollectorVersion>
</PropertyGroup>
</Project>