Skip to content

Commit 9228d54

Browse files
committed
Build: fix or add missing README.md files for nuget packages
1 parent f2e41d5 commit 9228d54

File tree

11 files changed

+18
-30
lines changed

11 files changed

+18
-30
lines changed

FoundationDB.Aspire.Hosting/FoundationDB.Aspire.Hosting.csproj

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
<ItemGroup>
3030
<None Include="../Common/foundationdb.png" Pack="true" Visible="false" PackagePath="\" />
31-
<None Include="../README.md" Pack="true" Visible="false" PackagePath="\" />
31+
<None Include="./README.md" Pack="true" Visible="false" PackagePath="\" />
3232
</ItemGroup>
3333

3434
<ItemGroup>
@@ -39,8 +39,4 @@
3939
<ProjectReference Include="..\FoundationDB.Client\FoundationDB.Client.csproj" />
4040
</ItemGroup>
4141

42-
<ItemGroup>
43-
<None Include="../README.md" Pack="true" Visible="false" PackagePath="/" />
44-
</ItemGroup>
45-
4642
</Project>

FoundationDB.Aspire.Hosting/README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
1-
*** Since .NET Aspire is still in preview, this may change at any time! ***
2-
31
#### Using Aspire
42

5-
***Note: Aspire is currently in preview, so things may change at any time!***
6-
7-
_At the time of this writing, you need at least Preview 4 (8.0.0-preview.4.24156.9) of the Aspire SDK !_
8-
93
It is possible to add a FoundationDB cluster resource to your Aspire application model, and pass a reference to this cluster to the projects that need it.
104

115
For local development, a local FoundationDB node will be started using the `foundationdb/foundationdb` Docker image, and all projects that use the cluster reference will have a temporary Cluster file pointing to the local instance.

FoundationDB.Aspire/FoundationDB.Aspire.csproj

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
<RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
1212
<SignAssembly>true</SignAssembly>
1313
<AssemblyOriginatorKeyFile>..\Common\foundationdb-net-client.snk</AssemblyOriginatorKeyFile>
14-
<PackageReadmeFile>README.md</PackageReadmeFile>
1514
<Deterministic>true</Deterministic>
1615
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
1716
</PropertyGroup>
@@ -29,7 +28,7 @@
2928

3029
<ItemGroup>
3130
<None Include="../Common/foundationdb.png" Pack="true" Visible="false" PackagePath="\" />
32-
<None Include="../README.md" Pack="true" Visible="false" PackagePath="\" />
31+
<None Include="./README.md" Pack="true" Visible="false" PackagePath="\" />
3332
</ItemGroup>
3433

3534
<ItemGroup>
@@ -47,9 +46,5 @@
4746
<ItemGroup>
4847
<JsonSchemaSegment Include=".\ConfigurationSchema.json" FilePathPattern="appsettings\..*json" />
4948
</ItemGroup>
50-
51-
<ItemGroup>
52-
<None Include="../README.md" Pack="true" Visible="false" PackagePath="/" />
53-
</ItemGroup>
5449

5550
</Project>

FoundationDB.Aspire/README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
1-
*** Since .NET Aspire is still in preview, this may change at any time! ***
2-
31
#### Using Aspire
42

5-
***Note: Aspire is currently in preview, so things may change at any time!***
6-
7-
_At the time of this writing, you need at least Preview 4 (8.0.0-preview.4.24156.9) of the Aspire SDK !_
8-
93
It is possible to add a FoundationDB cluster resource to your Aspire application model, and pass a reference to this cluster to the projects that need it.
104

115
For local development, a local FoundationDB node will be started using the `foundationdb/foundationdb` Docker image, and all projects that use the cluster reference will have a temporary Cluster file pointing to the local instance.

FoundationDB.Client.Native/FoundationDB.Client.Native.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666

6767
<!-- Readme and icons for the NuGet Package -->
6868
<None Include="../Common/foundationdb.png" Pack="true" Visible="false" PackagePath="\" />
69-
<None Include="../README.md" Pack="true" Visible="false" PackagePath="\" />
69+
<None Include="./README.md" Pack="true" Visible="false" PackagePath="\" />
7070

7171
<!-- Include the .targets file in the package -->
7272
<None Include="build\FoundationDB.Client.Native.targets" Pack="true" PackagePath="build/" />

FoundationDB.Client/FoundationDB.Client.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<PropertyGroup>
2020
<AssemblyTitle>.NET Binding for FoundationDB</AssemblyTitle>
2121
<Description>This is the FoundationDB client library for developing .NET applications or layers.</Description>
22-
<PackageTags>foundationdb fdb nosql</PackageTags>
22+
<PackageTags>foundationdb fdb nosql database</PackageTags>
2323
<PackageReadmeFile>README.md</PackageReadmeFile>
2424
<PackageIcon>foundationdb.png</PackageIcon>
2525
<GenerateDocumentationFile Condition="'$(Configuration)' != 'Debug'">true</GenerateDocumentationFile>

FoundationDB.Layers.Common/FoundationDB.Layers.Common.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,13 @@
2020
<AssemblyTitle>FoundationDB Common Layers</AssemblyTitle>
2121
<Description>Common Layers for the FoundationDB .NET Binding</Description>
2222
<PackageTags>foundationdb fdb nosql</PackageTags>
23-
<!--<PackageReadmeFile>README.md</PackageReadmeFile>-->
23+
<PackageReadmeFile>README.md</PackageReadmeFile>
2424
<PackageIcon>foundationdb.png</PackageIcon>
2525
</PropertyGroup>
2626

2727
<ItemGroup>
2828
<None Include="../Common/foundationdb.png" Pack="true" Visible="false" PackagePath="\" />
29+
<None Include="../README.md" Pack="true" Visible="false" PackagePath="\" />
2930
</ItemGroup>
3031

3132
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

FoundationDB.Layers.Experimental/FoundationDB.Layers.Experimental.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,13 @@
2020
<AssemblyTitle>FoundationDB Experimental Layers</AssemblyTitle>
2121
<Description>Experimental Layers for the FoundationDB .NET Binding</Description>
2222
<PackageTags>foundationdb fdb nosql</PackageTags>
23-
<!--<PackageReadmeFile>README.md</PackageReadmeFile>-->
23+
<PackageReadmeFile>README.md</PackageReadmeFile>
2424
<PackageIcon>foundationdb.png</PackageIcon>
2525
</PropertyGroup>
2626

2727
<ItemGroup>
2828
<None Include="../Common/foundationdb.png" Pack="true" Visible="false" PackagePath="\" />
29+
<None Include="../README.md" Pack="true" Visible="false" PackagePath="\" />
2930
</ItemGroup>
3031

3132
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

FoundationDB.Linq.Providers/FoundationDB.Linq.Providers.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,14 @@
1919
<PropertyGroup>
2020
<AssemblyTitle>FoundationDB LINQ Providers</AssemblyTitle>
2121
<Description>Experimental LINQ providers for the FoundationDB .NET Binding</Description>
22-
<PackageTags>foundationdb fdb nosql</PackageTags>
23-
<!--<PackageReadmeFile>README.md</PackageReadmeFile>-->
22+
<PackageTags>foundationdb fdb nosql database linq</PackageTags>
23+
<PackageReadmeFile>README.md</PackageReadmeFile>
2424
<PackageIcon>foundationdb.png</PackageIcon>
2525
</PropertyGroup>
2626

2727
<ItemGroup>
2828
<None Include="../Common/foundationdb.png" Pack="true" Visible="false" PackagePath="\" />
29+
<None Include="../README.md" Pack="true" Visible="false" PackagePath="\" />
2930
</ItemGroup>
3031

3132
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

SnowBank.Shell/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
SnowBank SDK - Shell Library
2+
==================================
3+
4+
> library for writing shells or advanced cli tools with prompts
5+

0 commit comments

Comments
 (0)