-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from conficient/Bug#12
Support multi-targeting for net-std/net5 - fixes #12
- Loading branch information
Showing
3 changed files
with
19 additions
and
8 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
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,21 +1,24 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Razor"> | ||
<Project Sdk="Microsoft.NET.Sdk.Razor"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks> | ||
<RazorLangVersion>3.0</RazorLangVersion> | ||
<Authors>conficient</Authors> | ||
<Company>conficient</Company> | ||
<Description>A HTML templating engine using Razor Components (.razor) files instead of .cshtml</Description> | ||
<PackageProjectUrl>https://github.com/conficient/BlazorTemplater</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/conficient/BlazorTemplater</RepositoryUrl> | ||
<PackageTags>Blazor RazorComponents HTML Email Templating</PackageTags> | ||
<Version>1.1.1</Version> | ||
<PackageReleaseNotes>Breaking change: renamed BlazorTemplater class to Templater</PackageReleaseNotes> | ||
<Version>1.2.0</Version> | ||
<PackageReleaseNotes>Fixed issue with using library in .NET 5.0</PackageReleaseNotes> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Components" Version="3.1.14" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="3.1.14" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Components" Version="3.1.14" Condition="'$(TargetFramework)' == 'netstandard2.0'"/> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="3.1.14" Condition="'$(TargetFramework)' == 'netstandard2.0'"/> | ||
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.5" Condition="'$(TargetFramework)' != 'netstandard2.0'" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.5" Condition="'$(TargetFramework)' != 'netstandard2.0'" /> | ||
|
||
</ItemGroup> | ||
|
||
</Project> |