File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Microsoft.AspNetCore.Razor.Tools/src
Microsoft.NET.Sdk.Razor/src Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ public GenerateCommand(Application parent)
2626 Outputs = Option ( "-o" , "Generated output file path" , CommandOptionType . MultipleValue ) ;
2727 RelativePaths = Option ( "-r" , "Relative path" , CommandOptionType . MultipleValue ) ;
2828 FileKinds = Option ( "-k" , "File kind" , CommandOptionType . MultipleValue ) ;
29- CssScopeSources = Option ( "-cssscopeinput " , "CSS scope source file " , CommandOptionType . MultipleValue ) ;
30- CssScopeValues = Option ( "-cssscopevalue" , "CSS scope value" , CommandOptionType . MultipleValue ) ;
29+ CssScopeSources = Option ( "-cssscopedinput " , ".razor file with scoped CSS " , CommandOptionType . MultipleValue ) ;
30+ CssScopeValues = Option ( "-cssscopevalue" , "CSS scope value for .razor file with scoped CSS " , CommandOptionType . MultipleValue ) ;
3131 ProjectDirectory = Option ( "-p" , "project root directory" , CommandOptionType . SingleValue ) ;
3232 TagHelperManifest = Option ( "-t" , "tag helper manifest file" , CommandOptionType . SingleValue ) ;
3333 Version = Option ( "-v|--version" , "Razor language version" , CommandOptionType . SingleValue ) ;
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ protected override string GenerateResponseFileCommands()
140140 var cssScope = input . GetMetadata ( CssScope ) ;
141141 if ( ! string . IsNullOrEmpty ( cssScope ) )
142142 {
143- builder . AppendLine ( "-cssscopeinput " ) ;
143+ builder . AppendLine ( "-cssscopedinput " ) ;
144144 builder . AppendLine ( input . GetMetadata ( FullPath ) ) ;
145145 builder . AppendLine ( "-cssscopevalue" ) ;
146146 builder . AppendLine ( cssScope ) ;
You can’t perform that action at this time.
0 commit comments