Skip to content

Commit

Permalink
version bumps and #3
Browse files Browse the repository at this point in the history
  • Loading branch information
iJungleboy committed Sep 7, 2020
1 parent 175a56e commit 9fe7974
Show file tree
Hide file tree
Showing 6 changed files with 1,218 additions and 506 deletions.
710 changes: 710 additions & 0 deletions DocFx Generator/log.txt

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Razor.Blade/Markup/Tag/Tag_UriEncode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public partial class TagBase
{
internal static string UriEncode(string url)
{
if (url == null) return url;
if (string.IsNullOrEmpty(url)) return url;

// more difficult case: %-character detected
// maybe we want it - like in ?title=I want 25%
Expand All @@ -22,7 +22,7 @@ internal static string UriEncode(string url)
// simple use case - no % character in url
// or the % wasn't just used for encoding
// so just perform standard encoding
return (url.Contains("'") ? Uri.EscapeUriString(url).Replace("'", "%27") : Uri.EscapeUriString(url));
return Uri.EscapeUriString(url).Replace("'", "%27");
}

internal static string UriEncodeSrcSet(string srcSet)
Expand Down
4 changes: 3 additions & 1 deletion Razor.Blade/Razor.Blade.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net40</TargetFrameworks>
<RootNamespace>ToSic.Razor</RootNamespace>
<Version>03.02.00</Version>
<Version>03.02.01</Version>
<AssemblyName>ToSic.Razor</AssemblyName>
<PackageId>ToSic.Razor</PackageId>
<Authors>ToSic.Razor</Authors>
<AssemblyVersion>3.2.1.0</AssemblyVersion>
<FileVersion>3.2.1.0</FileVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
Expand Down
4 changes: 2 additions & 2 deletions ToSic.Razor.Dnn/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("03.02.00.*")]
[assembly: AssemblyFileVersion("03.02.00.00")]
[assembly: AssemblyVersion("03.02.01.*")]
[assembly: AssemblyFileVersion("03.02.01.00")]
2 changes: 1 addition & 1 deletion ToSic.Razor.Dnn/ToSic_Razor_Blade_Dnn.dnn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<dotnetnuke type="Package" version="5.0">
<packages>
<package name="ToSic.RazorBlade" type="Library" version="03.02.00">
<package name="ToSic.RazorBlade" type="Library" version="03.02.01">
<friendlyName>2sic RazorBlade</friendlyName>
<description>2sic RazorBlade</description>
<iconFile>icon.png</iconFile>
Expand Down
Loading

0 comments on commit 9fe7974

Please sign in to comment.