Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<Project>
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>

<PropertyGroup>
<Version>2.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>
29 changes: 0 additions & 29 deletions buildConf/.props

This file was deleted.

Binary file added logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\buildConf\.props" />
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageId>Net.Cache.DynamoDb.ERC20</PackageId>
Expand Down
1 change: 0 additions & 1 deletion src/Net.Cache.DynamoDb/Net.Cache.DynamoDb.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\buildConf\.props" />
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageId>Net.Cache.DynamoDb</PackageId>
Expand Down
1 change: 0 additions & 1 deletion src/Net.Cache/Net.Cache.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\buildConf\.props" />
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageId>Net.Cache</PackageId>
Expand Down
Loading