-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
55 lines (45 loc) · 2.76 KB
/
Directory.Build.props
File metadata and controls
55 lines (45 loc) · 2.76 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
<Project>
<!-- Disable CPM for dotnet-script generated projects -->
<PropertyGroup Condition="$(MSBuildProjectFullPath.Contains('script-tmp'))">
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<TargetFrameworks Condition="$([System.String]::Copy('$(MSBuildProjectName)').StartsWith('TinyBDD')) == 'true' and $([System.String]::Copy('$(MSBuildProjectName)').EndsWith('.Tests')) != 'true' and $([System.String]::Copy('$(MSBuildProjectName)').EndsWith('.Tests.Common')) != 'true'">net8.0;net9.0;net10.0;netstandard2.0;netstandard2.1;net462;net47;net472;net48;net481</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<Deterministic>true</Deterministic>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
<PropertyGroup>
<Authors>Jerrett Davis and contributors</Authors>
<Company>JDH Productions LLC.</Company>
<Product>TinyBDD</Product>
<Description>TinyBDD is a minimal, fluent BDD library for .NET with Given/When/Then syntax, optional And/But chaining, and first-class sync/async support with adapters for MSTest, xUnit, and NUnit.</Description>
<PackageTags>bdd;testing;unit-testing;given-when-then;fluent;xunit;mstest;nunit;dotnet</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/JerrettDavis/TinyBDD</RepositoryUrl>
<PackageProjectUrl>https://github.com/JerrettDavis/TinyBDD</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>tiny.png</PackageIcon>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup>
<IsPackable>false</IsPackable>
<IsPackable Condition="$([System.String]::Copy('$(MSBuildProjectName)').EndsWith('.Tests')) == 'false'">true</IsPackable>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\"/>
<None Include="$(MSBuildThisFileDirectory)docs/images/tiny.png"
Pack="true"
PackagePath="tiny.png"/>
</ItemGroup>
</Project>