Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add nuspec properties #32

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 2 additions & 0 deletions Hexastore.PerfConsole/Hexastore.PerfConsole.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'README.md'))\build\common.props" />

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>NU1608</NoWarn>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
Expand Down
9 changes: 7 additions & 2 deletions Hexastore.Rocks/Hexastore.Rocks.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'README.md'))\build\common.props" />

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="RocksDbNative" Version="5.17.2" />
<PackageReference Include="RocksDbSharp" Version="5.17.2" />
<PackageReference Include="RocksDbNative" Version="5.17.2">
<PrivateAssets>none</PrivateAssets>
</PackageReference>
<PackageReference Include="RocksDbSharp" Version="5.17.2">
<PrivateAssets>none</PrivateAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 2 additions & 0 deletions Hexastore.ScaleConsole/Hexastore.ScaleConsole.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'README.md'))\build\common.props" />

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Hexastore.Test/Hexastore.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'README.md'))\build\common.props" />

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>

Expand Down
2 changes: 2 additions & 0 deletions Hexastore.Web/Hexastore.Web.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'README.md'))\build\common.props" />

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions Hexastore/Hexastore.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'README.md'))\build\common.props" />

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
Expand Down
14 changes: 14 additions & 0 deletions build/common.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<Project ToolsVersion="15.0">
<!-- Nuspec defaults -->
<PropertyGroup>
<Version>1.0.0-beta.5</Version>
<Authors>angshuman,jobeland,emgarten</Authors>
<PackageProjectUrl>https://github.com/angshuman/hexadb</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/angshuman/hexadb</RepositoryUrl>
<PackageTags>triplestore,triple-store,rocksdb,graphdb,jsonld,linked-data,graph,triples,nested-objects</PackageTags>
<Description>A schemaless graph database based on RocksDb</Description>
<Copyright>Copyright © 2020 Angshuman Sarkar</Copyright>
</PropertyGroup>
</Project>