-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
34 lines (30 loc) · 1.16 KB
/
Directory.Build.props
File metadata and controls
34 lines (30 loc) · 1.16 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
<Project>
<PropertyGroup>
<Company>ClickView</Company>
<Authors>ClickView</Authors>
<PackageProjectUrl>https://github.com/clickviewapp/GoodStuff</PackageProjectUrl>
<PackageIconUrl>https://static.clickview.com.au/assets/images/nugetlogo-64x64.png</PackageIconUrl>
<PackageIcon>package-icon.png</PackageIcon>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>CS1591</NoWarn>
</PropertyGroup>
<PropertyGroup>
<Version>1.14.0</Version>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="$(AssemblyName).Tests" />
</ItemGroup>
<PropertyGroup>
<LangVersion>14</LangVersion>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<ImplicitUsings>true</ImplicitUsings>
</PropertyGroup>
<PropertyGroup>
<CoreTargetFrameworks>net8.0;net9.0;net10.0</CoreTargetFrameworks>
<FullTargetFrameworks>net462;netstandard2.0;net8.0;net9.0;net10.0</FullTargetFrameworks>
<TestTargetFrameworks>net9.0;net10.0</TestTargetFrameworks>
</PropertyGroup>
</Project>