-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
51 lines (46 loc) · 2.2 KB
/
Copy pathDirectory.Build.props
File metadata and controls
51 lines (46 loc) · 2.2 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
<Project>
<PropertyGroup Label="TargetAndLanguage">
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<!-- TODO: tighten back to 'latest-recommended' before Phase 5 / first NuGet release.
Relaxed to 'latest-default' during MVP because opinionated rules
(CA1848 LoggerMessage, CA1711 naming, etc.) were blocking the
walking-skeleton workflow with no real value at this stage. -->
<AnalysisLevel>latest-default</AnalysisLevel>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
</PropertyGroup>
<PropertyGroup Label="NuGetMetadata">
<Authors>Tomi</Authors>
<Company>Tomi</Company>
<Product>Geode .NET Client</Product>
<Description>A pure managed .NET 10 client for Apache Geode.</Description>
<Copyright>Copyright © Tomi $([System.DateTime]::Now.Year)</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/CHANGE_ME/geode-dotnet</PackageProjectUrl>
<RepositoryUrl>https://github.com/CHANGE_ME/geode-dotnet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>geode;apache-geode;cache;distributed;dotnet;net10</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- IsPackable is set per-project (only the lib gets packed) -->
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup Label="ReproducibleBuild">
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup Label="SourceLinkAndSymbols">
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md"
Pack="true"
PackagePath="\"
Condition="Exists('$(MSBuildThisFileDirectory)README.md') and '$(IsPackable)' == 'true'" />
</ItemGroup>
</Project>