Skip to content

Commit 8392e7f

Browse files
authored
Merge pull request #2 from aeagle/release/0.0.1-beta.2
Added nuspec
2 parents 5259e3e + 7349b13 commit 8392e7f

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

BlazorSpaces.nuspec

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

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)