Skip to content

Commit 7793c89

Browse files
authored
Merge pull request #3 from aeagle/release/0.0.1-beta.2
Added nuspec
2 parents b08581d + ba524d2 commit 7793c89

4 files changed

Lines changed: 44 additions & 1 deletion

File tree

BlazorBook.nuspec

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>BlazorBook</id>
5+
<title xmlns="">BlazorBook</title>
6+
<authors>Allan Eagle</authors>
7+
<owners>Allan Eagle</owners>
8+
<projectUrl>https://github.com/aeagle/blazor-book</projectUrl>
9+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
10+
<description>Storybook like functionality for Blazor.NET to display Blazor components in a UI</description>
11+
<tags>Blazor .NET Storybook</tags>
12+
<version>0.0.1-beta.1</version>
13+
<dependencies>
14+
<group targetFramework="net6.0">
15+
<dependency id="BlazorSpaces" version="0.0.1-beta.2" />
16+
<dependency id="Microsoft.AspNetCore.Components.Web" version="6.0.2" />
17+
<dependency id="Microsoft.AspNetCore.Components.WebAssembly" version="6.0.2" />
18+
<dependency id="Microsoft.AspNetCore.Http.Abstractions" version="2.2.0" />
19+
<dependency id="Newtonsoft.Json" version="13.0.1" />
20+
<dependency id="System.Net.Http.Json" version="6.0.0" />
21+
</group>
22+
</dependencies>
23+
</metadata>
24+
<files>
25+
<file src="BlazorBook\bin\Debug\net6.0\BlazorBook.deps.json" target="lib\net6.0" />
26+
<file src="BlazorBook\bin\Debug\net6.0\BlazorBook.dll" target="lib\net6.0" />
27+
<file src="BlazorBook\bin\Debug\net6.0\BlazorBook.pdb" target="lib\net6.0" />
28+
</files>
29+
</package>

BlazorBook/BlazorBook.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</ItemGroup>
2929

3030
<ItemGroup>
31-
<PackageReference Include="BlazorSpaces" Version="0.0.1-beta.1" />
31+
<PackageReference Include="BlazorSpaces" Version="0.0.1-beta.2" />
3232
<PackageReference Include="BuildWebCompiler" Version="1.12.405" />
3333
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.2" />
3434
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.2" PrivateAssets="all" />

blazor-book.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ VisualStudioVersion = 17.1.32210.238
55
MinimumVisualStudioVersion = 15.0.26124.0
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorBook", "BlazorBook\BlazorBook.csproj", "{29821E1D-F8CC-4A3E-8E15-B1184A2F1EAC}"
77
EndProject
8+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{02B7CF36-00DC-42A0-BBAC-FFC328C8AE91}"
9+
ProjectSection(SolutionItems) = preProject
10+
BlazorBook.nuspec = BlazorBook.nuspec
11+
nuget.config = nuget.config
12+
EndProjectSection
13+
EndProject
814
Global
915
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1016
Debug|Any CPU = Debug|Any CPU

nuget.config

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<packageSources>
4+
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
5+
<clear />
6+
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
7+
</packageSources>
8+
</configuration>

0 commit comments

Comments
 (0)