-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
55 lines (48 loc) · 2.38 KB
/
Directory.Build.props
File metadata and controls
55 lines (48 loc) · 2.38 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>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>true</ImplicitUsings>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<Configuration Condition="$(Configuration) == ''">Debug</Configuration>
<NoWarn>$(NoWarn);CS8509;IDE0039;IDE0130;IDE0290;IDE0060;RZ10012;IDE0052;BL0007;NU5128</NoWarn>
<WarningsAsErrors>$(WarningsAsErrors);RZ2012;</WarningsAsErrors>
<ArtifactsPath>$([System.IO.Path]::Combine(
$(MSBuildThisFileDirectory),
"artifacts",
$([MSBuild]::MakeRelative($(MSBuildThisFileDirectory),$(MSBuildProjectDirectory)).Replace("$(MSBuildProjectName)", '').TrimEnd('/'))
))</ArtifactsPath>
<UseArtifactsOutput>true</UseArtifactsOutput>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IsPackable>false</IsPackable>
<DisableGitVersionTask Condition="'$(IsPackable)' == 'false'">false</DisableGitVersionTask>
</PropertyGroup>
<!-- Repository -->
<PropertyGroup>
<Authors>Panagiotis Athanasiou</Authors>
<Copyright>Copyright (c) $([System.DateTimeOffset]::UtcNow.ToString("yyyy")) $(Authors)</Copyright>
<RepositoryUrl>https://github.com/panoukos41/NoSQLite</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryLicense>MIT</RepositoryLicense>
<RepositoryDescription>A thin wrapper above sqlite to use it as a nosql database.</RepositoryDescription>
<RepositoryTags>sqlite</RepositoryTags>
</PropertyGroup>
<!-- Package -->
<PropertyGroup>
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
<PackageLicenseExpression>$(RepositoryLicense)</PackageLicenseExpression>
<PackageDescription>$(RepositoryDescription)</PackageDescription>
<PackageTags>$(RepositoryTags)</PackageTags>
<PackageReleaseNotes>$(RepositoryUrl)/releases</PackageReleaseNotes>
<!--<PackageIcon>Icon.png</PackageIcon>-->
<PackageReadmeFile>README.md</PackageReadmeFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<!-- Package -->
<ItemGroup Condition="'$(OutputType)' == 'Library' and $(IsPackable)">
<None Include="$(MSBuildThisFileDirectory)\README.md" Pack="True" PackagePath="\" />
<!--<None Include="$(MSBuildThisFileDirectory)\Icon.png" Pack="True" PackagePath="\" />-->
</ItemGroup>
</Project>