File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 35
35
<ContinuousIntegrationBuild >true</ContinuousIntegrationBuild >
36
36
</PropertyGroup >
37
37
38
+ <ItemGroup >
39
+ <Compile Remove =" Models\**" />
40
+ <Content Remove =" Models\**" />
41
+ <EmbeddedResource Remove =" Models\**" />
42
+ <None Remove =" Models\**" />
43
+ </ItemGroup >
44
+
38
45
<ItemGroup >
39
46
<PackageReference Include =" Microsoft.Extensions.DependencyInjection" Version =" 3.0.0-preview7.19362.4" />
40
47
<PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 1.0.0" >
43
50
</PackageReference >
44
51
</ItemGroup >
45
52
46
- <ItemGroup >
47
- <Folder Include =" Models\" />
48
- </ItemGroup >
49
-
50
53
</Project >
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ namespace ICG.AspNetCore.Utilities.TagHelpers
5
5
/// <summary>
6
6
/// A tag helper that if passed a tre value will suppress rendering content
7
7
/// </summary>
8
- [ HtmlTargetElement ( Attributes = nameof ( HideCondition ) ) ]
8
+ [ HtmlTargetElement ( Attributes = "hide-condition" ) ]
9
9
public class HideConditionTagHelper : TagHelper
10
10
{
11
11
/// <summary>
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ namespace ICG.AspNetCore.Utilities.TagHelpers
5
5
/// <summary>
6
6
/// A tag helper that if passed a false value will suppress rendering content
7
7
/// </summary>
8
- [ HtmlTargetElement ( Attributes = nameof ( ShowCondition ) ) ]
8
+ [ HtmlTargetElement ( Attributes = "show-condition" ) ]
9
9
public class ShowConditionTagHelper : TagHelper
10
10
{
11
11
/// <summary>
You can’t perform that action at this time.
0 commit comments