-
Notifications
You must be signed in to change notification settings - Fork 256
/
Copy pathSharedAssemblyInfo.targets
64 lines (61 loc) · 2.63 KB
/
SharedAssemblyInfo.targets
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
59
60
61
62
63
64
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Configurations>Debug;Release;</Configurations>
</PropertyGroup>
<PropertyGroup>
<Version>2.2.0.0</Version>
<Authors>Automate The Planet Ltd.</Authors>
<Company>Automate The Planet Ltd.</Company>
<Product>Bellatrix Test Framework</Product>
<AssemblyVersion>2.2.0.0</AssemblyVersion>
<FileVersion>2.2.0.0</FileVersion>
<NeutralLanguage>en</NeutralLanguage>
<Copyright>Automate The Planet Ltd. 2021</Copyright>
<PackageReleaseNotes>
- Upgrade all projects to .NET 5
</PackageReleaseNotes>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>bellatrix_icon.png</PackageIcon>
<PackageProjectUrl>https://www.automatetheplanet.com/</PackageProjectUrl>
<PackageTags>UITests,SystemTests</PackageTags>
<Description>Taking Software Quality to New Heights</Description>
</PropertyGroup>
<PropertyGroup>
<CodeAnalysisRuleSet>../../../StyleCopeRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<IsPackable>false</IsPackable>
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
<RunAnalyzersDuringLiveAnalysis>true</RunAnalyzersDuringLiveAnalysis>
<RunAnalyzers>true</RunAnalyzers>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
<NoWarn>NU1701;NU1702;NU1705;NU1608;</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<Optimize>true</Optimize>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<IsPackable>false</IsPackable>
<RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
<RunAnalyzersDuringLiveAnalysis>false</RunAnalyzersDuringLiveAnalysis>
<RunAnalyzers>false</RunAnalyzers>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>NU1701;NU1702;NU1705;NU1608;</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="*">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="*">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="../../../stylecop.json" Link="stylecop.json" />
<None Include="../../../LICENSE.txt" Pack="true" PackagePath=""/>
</ItemGroup>
</Project>