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
28 changes: 28 additions & 0 deletions BlazorSpaces.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>BlazorSpaces</id>
<title xmlns="">BlazorSpaces</title>
<authors>Allan Eagle</authors>
<owners>Allan Eagle</owners>
<projectUrl>https://github.com/aeagle/blazor-spaces</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Blazor components that allow you to divide a page or container into nestable anchored, scrollable and resizable spaces.</description>
<tags>Blazor .NET Components UI Layout</tags>
<version>0.0.1-beta.2</version>
<dependencies>
<group targetFramework="net6.0">
<dependency id="Microsoft.AspNetCore.Components.Web" version="6.0.2" />
<dependency id="Microsoft.AspNetCore.Components.WebAssembly" version="6.0.2" />
<dependency id="Microsoft.AspNetCore.Http.Abstractions" version="2.2.0" />
<dependency id="Newtonsoft.Json" version="13.0.1" />
<dependency id="System.Net.Http.Json" version="6.0.0" />
</group>
</dependencies>
</metadata>
<files>
<file src="BlazorSpaces\bin\Debug\net6.0\BlazorSpaces.deps.json" target="lib\net6.0" />
<file src="BlazorSpaces\bin\Debug\net6.0\BlazorSpaces.dll" target="lib\net6.0" />
<file src="BlazorSpaces\bin\Debug\net6.0\BlazorSpaces.pdb" target="lib\net6.0" />
</files>
</package>
8 changes: 8 additions & 0 deletions nuget.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
<clear />
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>