-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJsConsole.csproj
More file actions
23 lines (20 loc) · 919 Bytes
/
Copy pathJsConsole.csproj
File metadata and controls
23 lines (20 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>dochoss</Authors>
<Description>Javascript console library for Blazor projects. Depends on Microsoft.JSInterop</Description>
<Copyright>dochoss 2020</Copyright>
<PackageProjectUrl>https://github.com/dochoss/JsConsole</PackageProjectUrl>
<RepositoryUrl>https://github.com/dochoss/JsConsole</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageTags>Javascript Console Blazor JSInterop</PackageTags>
<PackageReleaseNotes>Initial release</PackageReleaseNotes>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<Version>1.0.1</Version>
<FileVersion>1.0.1.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.JSInterop" Version="3.1.5" />
</ItemGroup>
</Project>