-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Preparing for release 0.0.2 (#38)
* chore: Preparing for release 0.0.1 * revert change * Update README.md * Rebuild with correct README and bumped to 0.0.2 * Update README.md
- Loading branch information
1 parent
ac2c2d1
commit bdd2f10
Showing
8 changed files
with
172 additions
and
95 deletions.
There are no files selected for viewing
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,15 @@ | ||
Copyright (C) 2024 Raygun Limited | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
documentation files (the "Software"), to deal in the Software without restriction, including without limitation the | ||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to | ||
permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions | ||
of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO | ||
THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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
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 |
---|---|---|
|
@@ -30,13 +30,11 @@ | |
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<Product>Raygun</Product> | ||
<Authors>Robert McLaws</Authors> | ||
<Authors>Raygun Limited</Authors> | ||
<Company>Raygun Limited</Company> | ||
<RpmPackageVendor>Raygun</RpmPackageVendor> | ||
<Copyright>Copyright © 2024-2025 Raygun Limited. All rights reserved.</Copyright> | ||
<NeutralLanguage>en-US</NeutralLanguage> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<!-- | ||
Suppress a warning about upcoming deprecation of PackageLicenseUrl. When embedding licenses are supported, | ||
replace PackageLicenseUrl with PackageLicenseExpression. | ||
|
@@ -45,13 +43,8 @@ | |
<!-- Suppress warnings about using SemVer 2.0. --> | ||
<NoWarn>$(NoWarn);NU5105</NoWarn> | ||
|
||
<!-- Contact email address for NuGet packages and Linux installers. --> | ||
<!--<MaintainerEmail>[email protected]</MaintainerEmail>--> | ||
|
||
<PackageIcon>raygun.png</PackageIcon> | ||
<PackageProjectUrl>https://github.com/MindscapeHQ/raygun4blazor</PackageProjectUrl> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<PackageTags>raygun;blazor</PackageTags> | ||
<Serviceable>true</Serviceable> | ||
|
||
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot> | ||
|
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
54 changes: 38 additions & 16 deletions
54
src/Raygun.Blazor.WebAssembly/Raygun.Blazor.WebAssembly.csproj
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,21 +1,43 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Razor"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net8.0;</TargetFrameworks> | ||
<DocumentationFile>$(DocumentationFile)\$(AssemblyName).xml</DocumentationFile> | ||
<RootNamespace>Raygun.Blazor.WebAssembly</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<SupportedPlatform Include="browser" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>net8.0;</TargetFrameworks> | ||
<DocumentationFile>$(DocumentationFile)\$(AssemblyName).xml</DocumentationFile> | ||
<RootNamespace>Raygun.Blazor.WebAssembly</RootNamespace> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.*" /> | ||
</ItemGroup> | ||
<!-- NuGet Package config --> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<Version>0.0.2</Version> | ||
<PackageVersion>0.0.2</PackageVersion> | ||
<Authors>Raygun Limited</Authors> | ||
<Title>Raygun for Blazor WebAssembly</Title> | ||
<Description>Raygun's Crash Reporting extension for Blazor WebAssembly</Description> | ||
<Product>Raygun4Blazor.WebAssembly</Product> | ||
<PackageTags>Raygun; Crash Reporting; Blazor; .NET; dotnet; WebAssembly</PackageTags> | ||
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile> | ||
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> | ||
<PackageIcon>Raygun-icon-128x128.png</PackageIcon> | ||
<!-- End NuGet Package config --> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<!-- Package Readme File at root of repo --> | ||
<None Include="../../README.md" Pack="true" PackagePath="" /> | ||
<None Include="../../LICENSE.txt" Pack="true" PackagePath="" /> | ||
<None Include="../../Raygun-icon-128x128.png" Pack="true" PackagePath="" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<SupportedPlatform Include="browser" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.*" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Raygun.Blazor\Raygun.Blazor.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Raygun.Blazor\Raygun.Blazor.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
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,60 +1,76 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Razor"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net8.0;</TargetFrameworks> | ||
<DocumentationFile>$(DocumentationFile)\$(AssemblyName).xml</DocumentationFile> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<AddRazorSupportForMvc>true</AddRazorSupportForMvc> | ||
<Nullable>enable</Nullable> | ||
|
||
<TypeScriptModuleKind>commonjs</TypeScriptModuleKind> | ||
<TypeScriptTarget>ES2020</TypeScriptTarget> | ||
<TypeScriptOutDir>wwwroot</TypeScriptOutDir> | ||
<RootNamespace>Raygun.Blazor</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<!-- Package Readme File at root of repo --> | ||
<None Include="../../README.md" Pack="true" PackagePath="" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Ben.Demystifier" Version="[0.*, 1.0.0)" /> | ||
<PackageReference Include="KristofferStrube.Blazor.Window" Version="0.*-*" /> | ||
<PackageReference Include="MyCSharp.HttpUserAgentParser" Version="[3.*, 4.0.0]" /> | ||
<PackageReference Include="Microsoft.TypeScript.MSBuild" Version="5.5.2"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="[8.*, 9.0.0)" /> | ||
<PackageReference Include="Microsoft.Extensions.Http" Version="[8.*, 9.0.0)" /> | ||
<PackageReference Include="Microsoft.JSInterop" Version="[8.*, 9.0.0)" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'"> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="[7.*, 8.0.0)" /> | ||
<PackageReference Include="Microsoft.Extensions.Http" Version="[7.*, 8.0.0)" /> | ||
<PackageReference Include="Microsoft.JSInterop" Version="[7.*, 8.0.0)" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<SupportedPlatform Include="browser" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute"> | ||
<_Parameter1>Raygun.Blazor.WebAssembly, $(StrongNamePublicKey)</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute"> | ||
<_Parameter1>Raygun.Tests.Blazor, $(StrongNamePublicKey)</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>net8.0;</TargetFrameworks> | ||
<DocumentationFile>$(DocumentationFile)\$(AssemblyName).xml</DocumentationFile> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<AddRazorSupportForMvc>true</AddRazorSupportForMvc> | ||
<Nullable>enable</Nullable> | ||
|
||
<TypeScriptModuleKind>commonjs</TypeScriptModuleKind> | ||
<TypeScriptTarget>ES2020</TypeScriptTarget> | ||
<TypeScriptOutDir>wwwroot</TypeScriptOutDir> | ||
<RootNamespace>Raygun.Blazor</RootNamespace> | ||
|
||
<!-- NuGet Package config --> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<Version>0.0.2</Version> | ||
<PackageVersion>0.0.2</PackageVersion> | ||
<Authors>Raygun Limited</Authors> | ||
<Title>Raygun for Blazor</Title> | ||
<Description>Raygun's Crash Reporting Provider for Blazor .NET</Description> | ||
<Product>Raygun4Blazor</Product> | ||
<PackageTags>Raygun; Crash Reporting; Blazor; .NET; dotnet</PackageTags> | ||
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile> | ||
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> | ||
<PackageIcon>Raygun-icon-128x128.png</PackageIcon> | ||
<!-- End NuGet Package config --> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<!-- Package Readme File at root of repo --> | ||
<None Include="../../README.md" Pack="true" PackagePath="" /> | ||
<None Include="../../LICENSE.txt" Pack="true" PackagePath="" /> | ||
<None Include="../../Raygun-icon-128x128.png" Pack="true" PackagePath="" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Ben.Demystifier" Version="[0.*, 1.0.0)" /> | ||
<PackageReference Include="KristofferStrube.Blazor.Window" Version="0.*-*" /> | ||
<PackageReference Include="MyCSharp.HttpUserAgentParser" Version="[3.*, 4.0.0]" /> | ||
<PackageReference Include="Microsoft.TypeScript.MSBuild" Version="5.5.2"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="[8.*, 9.0.0)" /> | ||
<PackageReference Include="Microsoft.Extensions.Http" Version="[8.*, 9.0.0)" /> | ||
<PackageReference Include="Microsoft.JSInterop" Version="[8.*, 9.0.0)" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'"> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="[7.*, 8.0.0)" /> | ||
<PackageReference Include="Microsoft.Extensions.Http" Version="[7.*, 8.0.0)" /> | ||
<PackageReference Include="Microsoft.JSInterop" Version="[7.*, 8.0.0)" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<SupportedPlatform Include="browser" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute"> | ||
<_Parameter1>Raygun.Blazor.WebAssembly, $(StrongNamePublicKey)</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute"> | ||
<_Parameter1>Raygun.Tests.Blazor, $(StrongNamePublicKey)</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
|
||
|
||
</Project> |