-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
34 lines (29 loc) · 1.32 KB
/
Directory.Build.props
File metadata and controls
34 lines (29 loc) · 1.32 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>
<TargetFrameworks>net10.0;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<!-- Packaging -->
<PropertyGroup>
<Authors>Guus Kuiper</Authors>
<Description>The C# implementation of libstored.</Description>
<Copyright>Copyright Guus Kuiper</Copyright>
<MinVerTagPrefix>v</MinVerTagPrefix>
<PackageTags>libstored</PackageTags>
<PackageProjectUrl>https://github.com/DEMCON/libstored.net</PackageProjectUrl>
<RepositoryUrl>https://github.com/DEMCON/libstored.net</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup>
<CustomMSBuildRoot>$([MSBuild]::NormalizeDirectory('$(MSBuildThisFileDirectory)', 'msbuild'))</CustomMSBuildRoot>
<ArtifactsRoot>$([MSBuild]::NormalizeDirectory('$(MSBuildThisFileDirectory)', 'artifacts'))</ArtifactsRoot>
</PropertyGroup>
</Project>