Skip to content

Commit

Permalink
Updated TextExtensions project metadata and removed dependancy on bUn…
Browse files Browse the repository at this point in the history
…it from Toast (#140)
  • Loading branch information
chrissainty authored Oct 8, 2021
1 parent a7387c7 commit d187022
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 17 deletions.
3 changes: 1 addition & 2 deletions samples/bUnitExample/bUnitExample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="bunit.core" Version="1.1.5" />
<PackageReference Include="bunit.web" Version="1.1.5" />
<PackageReference Include="bunit.web" Version="1.2.49" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,43 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Blazored.Toast.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="bunit" Version="1.1.5" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Blazored.Toast\Blazored.Toast.csproj" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<RazorLangVersion>3.0</RazorLangVersion>

<Authors>Chris Sainty</Authors>
<Company></Company>
<Copyright>Copyright 2020 (c) Chris Sainty. All rights reserved.</Copyright>

<Description>A testing library to provide helper extensions for Blazored.Toast</Description>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>

<!-- NuGet settings -->
<PackageId>Blazored.Toast.TestExtensions</PackageId>
<PackageTags>Blazored;Blazor;Razor;Components;Toast;Popup;Notification;ASP.NET Core;CSharp;Web</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Blazored/Toast</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Blazored/Toast</RepositoryUrl>

<!-- SourceLink settings -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Blazored.Toast.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>

<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="bunit" Version="1.2.49" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Blazored.Toast\Blazored.Toast.csproj" />
</ItemGroup>

</Project>
2 changes: 0 additions & 2 deletions src/Blazored.Toast/Blazored.Toast.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@

<ItemGroup>
<PackageReference Include="BuildBundlerMinifier" Version="3.2.447" PrivateAssets="all" />
<PackageReference Include="bunit.core" Version="1.1.5" />
<PackageReference Include="bunit.web" Version="1.1.5" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.6" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="3.1.6" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="3.1.6" />
Expand Down

0 comments on commit d187022

Please sign in to comment.