-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented NuGet settings and published the package.
- Loading branch information
Showing
23 changed files
with
95 additions
and
14 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file modified
BIN
+1.01 KB
(340%)
samples/BlazorWebAssembly/obj/Debug/net5.0/BlazorWebAssembly.csprojAssemblyReference.cache
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,37 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Razor"> | ||
<Project Sdk="Microsoft.NET.Sdk.Razor"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net5.0</TargetFramework> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net5.0</TargetFramework> | ||
<PackageId>Vidazor</PackageId> | ||
<Authors>Arad Aral</Authors> | ||
<Version>1.0.0</Version> | ||
<Title>Vidazor - HTML5 Video API for Blazor WebAssembly</Title> | ||
<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. | ||
The docs are available at https://github.com/AradAral/Vidazor | ||
</Description> | ||
<PackageProjectUrl>https://github.com/AradAral/Vidazor</PackageProjectUrl> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<PackageTags>Blazor Video;Video Blazor;Blazor;Blazor WebAssembly;HTML5 Video</PackageTags> | ||
<RepositoryUrl>https://github.com/AradAral/Vidazor</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<Copyright>Copyright 2020 (c) Arad Aral. All rights reserved.</Copyright> | ||
</PropertyGroup> | ||
|
||
|
||
<ItemGroup> | ||
<SupportedPlatform Include="browser" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<SupportedPlatform Include="browser" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.1" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="icon.png"> | ||
<Pack>True</Pack> | ||
<PackagePath></PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
</Project> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> | ||
<metadata> | ||
<id>Vidazor</id> | ||
<version>1.0.0</version> | ||
<title>Vidazor - HTML5 Video API for Blazor WebAssembly</title> | ||
<authors>Arad Aral</authors> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<license type="expression">MIT</license> | ||
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl> | ||
<icon>icon.png</icon> | ||
<projectUrl>https://github.com/AradAral/Vidazor</projectUrl> | ||
<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. | ||
The docs are available at https://github.com/AradAral/Vidazor</description> | ||
<copyright>Copyright 2020 (c) Arad Aral. All rights reserved.</copyright> | ||
<tags>Blazor Video Video Blazor Blazor Blazor WebAssembly HTML5 Video</tags> | ||
<repository type="git" url="https://github.com/AradAral/Vidazor" /> | ||
<dependencies> | ||
<group targetFramework="net5.0"> | ||
<dependency id="Microsoft.AspNetCore.Components.Web" version="5.0.1" exclude="Build,Analyzers" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="D:\Development\Vidazor\src\Vidazor\bin\Debug\net5.0\Vidazor.dll" target="lib\net5.0\Vidazor.dll" /> | ||
<file src="D:\Development\Vidazor\src\Vidazor\obj\Debug\net5.0\staticwebassets\msbuild.Vidazor.Microsoft.AspNetCore.StaticWebAssets.props" target="build\Microsoft.AspNetCore.StaticWebAssets.props" /> | ||
<file src="D:\Development\Vidazor\src\Vidazor\obj\Debug\net5.0\staticwebassets\msbuild.build.Vidazor.props" target="build\Vidazor.props" /> | ||
<file src="D:\Development\Vidazor\src\Vidazor\obj\Debug\net5.0\staticwebassets\msbuild.buildMultiTargeting.Vidazor.props" target="buildMultiTargeting\Vidazor.props" /> | ||
<file src="D:\Development\Vidazor\src\Vidazor\obj\Debug\net5.0\staticwebassets\msbuild.buildTransitive.Vidazor.props" target="buildTransitive\Vidazor.props" /> | ||
<file src="D:\Development\Vidazor\src\Vidazor\wwwroot\functions.js" target="staticwebassets\functions.js" /> | ||
<file src="D:\Development\Vidazor\src\Vidazor\icon.png" target="icon.png" /> | ||
</files> | ||
</package> |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
120416ebe00e7544214aaefdd5f71f98208896db | ||
f5533a0f4123ed87a5edfc023c84310217b58a8e |
2 changes: 1 addition & 1 deletion
2
src/Vidazor/obj/Debug/net5.0/Vidazor.RazorTargetAssemblyInfo.cache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
85d85e320a0a87f3985aaaf90ed00b30cc4a4b9d | ||
a67b985f07b51e082a5633b704608b705650777e |
Binary file modified
BIN
-108 KB
(0.38%)
src/Vidazor/obj/Debug/net5.0/Vidazor.csprojAssemblyReference.cache
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions
1
src/Vidazor/obj/Debug/net5.0/staticwebassets/Vidazor.StaticWebAssets.Pack.cache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3335b499838dd5dc57103be52d32abbef2e55f10 |
11 changes: 11 additions & 0 deletions
11
...j/Debug/net5.0/staticwebassets/msbuild.Vidazor.Microsoft.AspNetCore.StaticWebAssets.props
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<Project> | ||
<ItemGroup> | ||
<StaticWebAsset Include="$(MSBuildThisFileDirectory)..\staticwebassets\functions.js"> | ||
<SourceType>Package</SourceType> | ||
<SourceId>Vidazor</SourceId> | ||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot> | ||
<BasePath>_content/Vidazor</BasePath> | ||
<RelativePath>functions.js</RelativePath> | ||
</StaticWebAsset> | ||
</ItemGroup> | ||
</Project> |
3 changes: 3 additions & 0 deletions
3
src/Vidazor/obj/Debug/net5.0/staticwebassets/msbuild.build.Vidazor.props
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<Project> | ||
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" /> | ||
</Project> |
3 changes: 3 additions & 0 deletions
3
src/Vidazor/obj/Debug/net5.0/staticwebassets/msbuild.buildMultiTargeting.Vidazor.props
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<Project> | ||
<Import Project="..\build\Vidazor.props" /> | ||
</Project> |
3 changes: 3 additions & 0 deletions
3
src/Vidazor/obj/Debug/net5.0/staticwebassets/msbuild.buildTransitive.Vidazor.props
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<Project> | ||
<Import Project="..\buildMultiTargeting\Vidazor.props" /> | ||
</Project> |