Skip to content

Commit 1bf88d7

Browse files
committed
Implemented NuGet settings and published the package.
1 parent 7f076b2 commit 1bf88d7

23 files changed

+95
-14
lines changed

.vs/Vidazor/v16/.suo

-512 Bytes
Binary file not shown.

src/Vidazor/Vidazor.csproj

Lines changed: 32 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,37 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Razor">
1+
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

3-
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
5-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net5.0</TargetFramework>
5+
<PackageId>Vidazor</PackageId>
6+
<Authors>Arad Aral</Authors>
7+
<Version>1.0.0</Version>
8+
<Title>Vidazor - HTML5 Video API for Blazor WebAssembly</Title>
9+
<Description>
10+
Vidazor = Video + Blazor | The HTML5 Video API For Blazor - Vidazor provides a C#/Blazor interface to the HTML5 video API that you normally can only access with JavaScript.
11+
The docs are available at https://github.com/AradAral/Vidazor
12+
</Description>
13+
<PackageProjectUrl>https://github.com/AradAral/Vidazor</PackageProjectUrl>
14+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
15+
<PackageIcon>icon.png</PackageIcon>
16+
<PackageTags>Blazor Video;Video Blazor;Blazor;Blazor WebAssembly;HTML5 Video</PackageTags>
17+
<RepositoryUrl>https://github.com/AradAral/Vidazor</RepositoryUrl>
18+
<RepositoryType>git</RepositoryType>
19+
<Copyright>Copyright 2020 (c) Arad Aral. All rights reserved.</Copyright>
20+
</PropertyGroup>
621

7-
8-
<ItemGroup>
9-
<SupportedPlatform Include="browser" />
10-
</ItemGroup>
22+
<ItemGroup>
23+
<SupportedPlatform Include="browser" />
24+
</ItemGroup>
1125

12-
<ItemGroup>
13-
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.1" />
14-
</ItemGroup>
26+
<ItemGroup>
27+
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.1" />
28+
</ItemGroup>
29+
30+
<ItemGroup>
31+
<None Include="icon.png">
32+
<Pack>True</Pack>
33+
<PackagePath></PackagePath>
34+
</None>
35+
</ItemGroup>
1536

1637
</Project>
162 KB
Binary file not shown.
1 KB
Binary file not shown.
56 Bytes
Binary file not shown.
Binary file not shown.

src/Vidazor/icon.png

152 KB
Loading
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
3+
<metadata>
4+
<id>Vidazor</id>
5+
<version>1.0.0</version>
6+
<title>Vidazor - HTML5 Video API for Blazor WebAssembly</title>
7+
<authors>Arad Aral</authors>
8+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
9+
<license type="expression">MIT</license>
10+
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
11+
<icon>icon.png</icon>
12+
<projectUrl>https://github.com/AradAral/Vidazor</projectUrl>
13+
<description>Vidazor = Video + Blazor | The HTML5 Video API For Blazor - Vidazor provides a C#/Blazor interface to the HTML5 video API that you normally can only access with JavaScript.
14+
The docs are available at https://github.com/AradAral/Vidazor</description>
15+
<copyright>Copyright 2020 (c) Arad Aral. All rights reserved.</copyright>
16+
<tags>Blazor Video Video Blazor Blazor Blazor WebAssembly HTML5 Video</tags>
17+
<repository type="git" url="https://github.com/AradAral/Vidazor" />
18+
<dependencies>
19+
<group targetFramework="net5.0">
20+
<dependency id="Microsoft.AspNetCore.Components.Web" version="5.0.1" exclude="Build,Analyzers" />
21+
</group>
22+
</dependencies>
23+
</metadata>
24+
<files>
25+
<file src="D:\Development\Vidazor\src\Vidazor\bin\Debug\net5.0\Vidazor.dll" target="lib\net5.0\Vidazor.dll" />
26+
<file src="D:\Development\Vidazor\src\Vidazor\obj\Debug\net5.0\staticwebassets\msbuild.Vidazor.Microsoft.AspNetCore.StaticWebAssets.props" target="build\Microsoft.AspNetCore.StaticWebAssets.props" />
27+
<file src="D:\Development\Vidazor\src\Vidazor\obj\Debug\net5.0\staticwebassets\msbuild.build.Vidazor.props" target="build\Vidazor.props" />
28+
<file src="D:\Development\Vidazor\src\Vidazor\obj\Debug\net5.0\staticwebassets\msbuild.buildMultiTargeting.Vidazor.props" target="buildMultiTargeting\Vidazor.props" />
29+
<file src="D:\Development\Vidazor\src\Vidazor\obj\Debug\net5.0\staticwebassets\msbuild.buildTransitive.Vidazor.props" target="buildTransitive\Vidazor.props" />
30+
<file src="D:\Development\Vidazor\src\Vidazor\wwwroot\functions.js" target="staticwebassets\functions.js" />
31+
<file src="D:\Development\Vidazor\src\Vidazor\icon.png" target="icon.png" />
32+
</files>
33+
</package>
Binary file not shown.

0 commit comments

Comments
 (0)