generated from The-Poolz/Poolz.Finance.CSharp.LibraryTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
40 lines (36 loc) · 1.38 KB
/
Directory.Build.props
File metadata and controls
40 lines (36 loc) · 1.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
<Project>
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(IsTestProject)' != 'true'">
<Version>1.0.0</Version>
<Authors>ArdenHide,Lomet</Authors>
<Company>The-Poolz</Company>
<RepositoryType>git</RepositoryType>
<_Repo>$(GITHUB_REPOSITORY)</_Repo>
<RepositoryUrl Condition="'$(_Repo)' != ''">https://github.com/$(_Repo)</RepositoryUrl>
<PackageProjectUrl Condition="'$(_Repo)' != ''">https://github.com/$(_Repo)</PackageProjectUrl>
<PackageReleaseNotes Condition="'$(_Repo)' != ''">https://github.com/$(_Repo)/releases/tag/v$(Version)</PackageReleaseNotes>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>logo.png</PackageIcon>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup Condition="'$(IsTestProject)' != 'true'">
<None Include="$(MSBuildThisFileDirectory)LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="$(MSBuildThisFileDirectory)README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="$(MSBuildThisFileDirectory)logo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>