Run Components on netcoreapp3.0 (#4391)
This commit is contained in:
parent
3cfa6c0526
commit
5c1fbe1af7
|
|
@ -8,7 +8,7 @@
|
||||||
<PackageTags>aspnetcore;components</PackageTags>
|
<PackageTags>aspnetcore;components</PackageTags>
|
||||||
|
|
||||||
<!-- So we can use the tool from source within the repo without having to pack -->
|
<!-- So we can use the tool from source within the repo without having to pack -->
|
||||||
<BlazorToolsDir>$(MSBuildThisFileDirectory)src\Microsoft.AspNetCore.Components.Build\bin\$(Configuration)\netcoreapp2.1\</BlazorToolsDir>
|
<BlazorToolsDir>$(MSBuildThisFileDirectory)src\Microsoft.AspNetCore.Components.Build\bin\$(Configuration)\netcoreapp3.0\</BlazorToolsDir>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
<Project>
|
<Project>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">$(MicrosoftNETCoreApp20PackageVersion)</RuntimeFrameworkVersion>
|
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp3.0' ">$(MicrosoftNETCoreApp22PackageVersion)</RuntimeFrameworkVersion>
|
||||||
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp2.1' ">$(MicrosoftNETCoreApp21PackageVersion)</RuntimeFrameworkVersion>
|
<!-- aspnet/BuildTools#662 Don't police what version of NetCoreApp we use -->
|
||||||
|
<NETCoreAppMaximumVersion>99.9</NETCoreAppMaximumVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -134,10 +134,10 @@
|
||||||
"Microsoft.AspNetCore.Blazor.Cli": {
|
"Microsoft.AspNetCore.Blazor.Cli": {
|
||||||
"Exclusions": {
|
"Exclusions": {
|
||||||
"SIGN_STRONGNAME": {
|
"SIGN_STRONGNAME": {
|
||||||
"lib/netcoreapp2.1/dotnet-blazor.dll": "See comments in Microsoft.AspNetCore.Blazor.Cli.csproj"
|
"lib/netcoreapp3.0/dotnet-blazor.dll": "See comments in Microsoft.AspNetCore.Blazor.Cli.csproj"
|
||||||
},
|
},
|
||||||
"WRONG_PUBLICKEYTOKEN": {
|
"WRONG_PUBLICKEYTOKEN": {
|
||||||
"lib/netcoreapp2.1/dotnet-blazor.dll": "See comments in Microsoft.AspNetCore.Blazor.Cli.csproj"
|
"lib/netcoreapp3.0/dotnet-blazor.dll": "See comments in Microsoft.AspNetCore.Blazor.Cli.csproj"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<ServerGarbageCollection>true</ServerGarbageCollection>
|
<ServerGarbageCollection>true</ServerGarbageCollection>
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,11 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.AspNetCore.App" Version="$(MicrosoftAspNetCoreAppPackageVersion)" />
|
<PackageReference Include="Microsoft.AspNetCore" Version="$(MicrosoftAspNetCoreAppPackageVersion)" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="$(MicrosoftAspNetCoreRazorDesignPackageVersion)" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.AspNetCore.App" Version="$(MicrosoftAspNetCoreAppPackageVersion)" />
|
<PackageReference Include="Microsoft.AspNetCore" Version="$(MicrosoftAspNetCoreAppPackageVersion)" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="$(MicrosoftAspNetCoreRazorDesignPackageVersion)" />
|
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="$(MicrosoftAspNetCoreRazorDesignPackageVersion)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<AssemblyName>dotnet-blazor</AssemblyName>
|
<AssemblyName>dotnet-blazor</AssemblyName>
|
||||||
<PackageId>Microsoft.AspNetCore.Blazor.Cli</PackageId>
|
<PackageId>Microsoft.AspNetCore.Blazor.Cli</PackageId>
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,9 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.CodeAnalysis.Razor.Workspaces" Version="$(RazorPackageVersion)" />
|
<PackageReference Include="Microsoft.CodeAnalysis.Razor.Workspaces" Version="2.1.0" />
|
||||||
<PackageReference Include="Microsoft.VisualStudio.CoreUtility" Version="15.6.27413" />
|
<PackageReference Include="Microsoft.VisualStudio.CoreUtility" Version="15.6.27413" />
|
||||||
<PackageReference Include="Microsoft.VisualStudio.Editor.Razor" Version="$(RazorPackageVersion)" />
|
<PackageReference Include="Microsoft.VisualStudio.Editor.Razor" Version="2.1.0" />
|
||||||
<PackageReference Include="Microsoft.VisualStudio.LanguageServices" Version="2.8.0" />
|
<PackageReference Include="Microsoft.VisualStudio.LanguageServices" Version="2.8.0" />
|
||||||
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="15.6.27413" />
|
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="15.6.27413" />
|
||||||
<PackageReference Include="Microsoft.VisualStudio.TextManager.Interop" Version="7.10.6071" />
|
<PackageReference Include="Microsoft.VisualStudio.TextManager.Interop" Version="7.10.6071" />
|
||||||
|
|
|
||||||
|
|
@ -4,19 +4,17 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Label="Package Versions"><!-- Used only in development when running the template contents directly from source -->
|
<PropertyGroup Label="Package Versions"><!-- Used only in development when running the template contents directly from source -->
|
||||||
<AspNetCorePackageVersion>2.1.0</AspNetCorePackageVersion>
|
<AspNetCorePackageVersion>3.0.0-alpha1-10605</AspNetCorePackageVersion>
|
||||||
<AspNetCoreRuntimeVersion>2.1.3</AspNetCoreRuntimeVersion>
|
|
||||||
<BenchmarkDotNetPackageVersion>0.10.13</BenchmarkDotNetPackageVersion>
|
<BenchmarkDotNetPackageVersion>0.10.13</BenchmarkDotNetPackageVersion>
|
||||||
<InternalAspNetCoreSdkPackageVersion>3.0.0-build-20181120.4</InternalAspNetCoreSdkPackageVersion>
|
<InternalAspNetCoreSdkPackageVersion>3.0.0-alpha1-20181011.3</InternalAspNetCoreSdkPackageVersion>
|
||||||
<MicrosoftAspNetCoreBenchmarkRunnerSourcesPackageVersion>2.2.0-preview1-34576</MicrosoftAspNetCoreBenchmarkRunnerSourcesPackageVersion>
|
<MicrosoftAspNetCoreBenchmarkRunnerSourcesPackageVersion>2.2.0-preview1-34576</MicrosoftAspNetCoreBenchmarkRunnerSourcesPackageVersion>
|
||||||
<MicrosoftAspNetCoreAppPackageVersion>2.1.2</MicrosoftAspNetCoreAppPackageVersion>
|
<MicrosoftAspNetCoreAppPackageVersion>3.0.0-alpha1-10605</MicrosoftAspNetCoreAppPackageVersion>
|
||||||
<MicrosoftAspNetCoreRazorDesignPackageVersion>2.1.2</MicrosoftAspNetCoreRazorDesignPackageVersion>
|
<MicrosoftAspNetCoreRazorDesignPackageVersion>3.0.0-alpha1-10605</MicrosoftAspNetCoreRazorDesignPackageVersion>
|
||||||
<MicrosoftNETCoreApp20PackageVersion>2.0.9</MicrosoftNETCoreApp20PackageVersion>
|
<MicrosoftNETCoreAppPackageVersion>3.0.0-preview1-26907-05</MicrosoftNETCoreAppPackageVersion>
|
||||||
<MicrosoftNETCoreApp21PackageVersion>2.1.3</MicrosoftNETCoreApp21PackageVersion>
|
<SignalRPackageVersion>3.0.0-alpha1-10605</SignalRPackageVersion>
|
||||||
<SignalRPackageVersion>1.0.0</SignalRPackageVersion>
|
|
||||||
<TemplateBlazorPackageVersion>0.8.0-preview1-20181122.3</TemplateBlazorPackageVersion>
|
<TemplateBlazorPackageVersion>0.8.0-preview1-20181122.3</TemplateBlazorPackageVersion>
|
||||||
<TemplateRazorDesignPackageVersion>2.1.2</TemplateRazorDesignPackageVersion>
|
<TemplateRazorDesignPackageVersion>2.1.2</TemplateRazorDesignPackageVersion>
|
||||||
<RazorPackageVersion>2.1.0</RazorPackageVersion>
|
<RazorPackageVersion>3.0.0-alpha1-10605</RazorPackageVersion>
|
||||||
<MicrosoftAspNetCoreBlazorMonoPackageVersion>0.8.0-preview1-20181126.1</MicrosoftAspNetCoreBlazorMonoPackageVersion>
|
<MicrosoftAspNetCoreBlazorMonoPackageVersion>0.8.0-preview1-20181126.1</MicrosoftAspNetCoreBlazorMonoPackageVersion>
|
||||||
|
|
||||||
<!-- When updating this, ensure you also update Browser.JS/package.json to reference the corresponding version of @dotnet/jsinterop -->
|
<!-- When updating this, ensure you also update Browser.JS/package.json to reference the corresponding version of @dotnet/jsinterop -->
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<DotNetCoreRuntime Include="$(MicrosoftNETCoreApp21PackageVersion)" />
|
<DotNetCoreRuntime Include="$(MicrosoftNETCoreAppPackageVersion)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.AspNetCore.App" Version="$(MicrosoftAspNetCoreAppPackageVersion)" />
|
<PackageReference Include="Microsoft.AspNetCore" Version="$(AspNetCorePackageVersion)" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="$(MicrosoftAspNetCoreRazorDesignPackageVersion)" />
|
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="$(MicrosoftAspNetCoreRazorDesignPackageVersion)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
<Description>JavaScript runtime files needed for ASP.NET Core Components browser rendering.</Description>
|
<Description>JavaScript runtime files needed for ASP.NET Core Components browser rendering.</Description>
|
||||||
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
|
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
|
||||||
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion>
|
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
|
<TargetFrameworks>netcoreapp3.0</TargetFrameworks>
|
||||||
<Description>Build mechanism for ASP.NET Core Components.</Description>
|
<Description>Build mechanism for ASP.NET Core Components.</Description>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||||
|
|
|
||||||
|
|
@ -20,10 +20,10 @@
|
||||||
</metadata>
|
</metadata>
|
||||||
<files>
|
<files>
|
||||||
<file src="..\..\THIRD-PARTY-NOTICES.txt" />
|
<file src="..\..\THIRD-PARTY-NOTICES.txt" />
|
||||||
<file src="$publishdir$netcoreapp2.1\Microsoft.AspNetCore.Components.TagHelperWorkaround.dll" target="lib/netstandard1.0/" />
|
<file src="$publishdir$netcoreapp3.0\Microsoft.AspNetCore.Components.TagHelperWorkaround.dll" target="lib/netstandard1.0/" />
|
||||||
<file src="build\**" target="build" />
|
<file src="build\**" target="build" />
|
||||||
<file src="targets\**" target="targets" />
|
<file src="targets\**" target="targets" />
|
||||||
<file src="$publishdir$netcoreapp2.1\**\*" target="tools/" />
|
<file src="$publishdir$netcoreapp3.0\**\*" target="tools/" />
|
||||||
<file src="..\Microsoft.AspNetCore.Components.Browser.JS\dist\blazor.*.js" target="tools\blazor" />
|
<file src="..\Microsoft.AspNetCore.Components.Browser.JS\dist\blazor.*.js" target="tools\blazor" />
|
||||||
</files>
|
</files>
|
||||||
</package>
|
</package>
|
||||||
|
|
|
||||||
|
|
@ -165,16 +165,23 @@ namespace Microsoft.AspNetCore.Builder
|
||||||
private static IContentTypeProvider CreateContentTypeProvider(bool enableDebugging)
|
private static IContentTypeProvider CreateContentTypeProvider(bool enableDebugging)
|
||||||
{
|
{
|
||||||
var result = new FileExtensionContentTypeProvider();
|
var result = new FileExtensionContentTypeProvider();
|
||||||
result.Mappings.Add(".dll", MediaTypeNames.Application.Octet);
|
AddMapping(result, ".dll", MediaTypeNames.Application.Octet);
|
||||||
result.Mappings.Add(".mem", MediaTypeNames.Application.Octet);
|
AddMapping(result, ".wasm", WasmMediaTypeNames.Application.Wasm);
|
||||||
result.Mappings.Add(".wasm", WasmMediaTypeNames.Application.Wasm);
|
|
||||||
|
|
||||||
if (enableDebugging)
|
if (enableDebugging)
|
||||||
{
|
{
|
||||||
result.Mappings.Add(".pdb", MediaTypeNames.Application.Octet);
|
AddMapping(result, ".pdb", MediaTypeNames.Application.Octet);
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static void AddMapping(FileExtensionContentTypeProvider provider, string name, string mimeType)
|
||||||
|
{
|
||||||
|
if (!provider.Mappings.ContainsKey(name))
|
||||||
|
{
|
||||||
|
provider.Mappings.Add(name, mimeType);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
|
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
|
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,12 +6,12 @@ namespace Test
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using Microsoft.AspNetCore.Components;
|
||||||
#line 1 "x:\dir\subdir\Test\TestComponent.cshtml"
|
#line 1 "x:\dir\subdir\Test\TestComponent.cshtml"
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
using Microsoft.AspNetCore.Components;
|
|
||||||
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,8 @@ Document -
|
||||||
UsingDirective - (3:1,1 [12] ) - System
|
UsingDirective - (3:1,1 [12] ) - System
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
|
||||||
UsingDirective - (104:5,1 [37] ) - Microsoft.AspNetCore.Components
|
UsingDirective - (104:5,1 [37] ) - Microsoft.AspNetCore.Components
|
||||||
|
UsingDirective - (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [36] ) - "*, Microsoft.AspNetCore.Components"
|
DirectiveToken - (14:0,14 [36] ) - "*, Microsoft.AspNetCore.Components"
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
Source Location: (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|using System.Threading.Tasks|
|
|using System.Threading.Tasks|
|
||||||
Generated Location: (222:9,0 [28] )
|
Generated Location: (266:10,0 [28] )
|
||||||
|using System.Threading.Tasks|
|
|using System.Threading.Tasks|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,12 +6,12 @@ namespace Test
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using Microsoft.AspNetCore.Components;
|
||||||
#line 1 "x:\dir\subdir\Test\TestComponent.cshtml"
|
#line 1 "x:\dir\subdir\Test\TestComponent.cshtml"
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
using Microsoft.AspNetCore.Components;
|
|
||||||
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,8 @@ Document -
|
||||||
UsingDirective - (3:1,1 [12] ) - System
|
UsingDirective - (3:1,1 [12] ) - System
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
|
||||||
UsingDirective - (104:5,1 [37] ) - Microsoft.AspNetCore.Components
|
UsingDirective - (104:5,1 [37] ) - Microsoft.AspNetCore.Components
|
||||||
|
UsingDirective - (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [36] ) - "*, Microsoft.AspNetCore.Components"
|
DirectiveToken - (14:0,14 [36] ) - "*, Microsoft.AspNetCore.Components"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
Source Location: (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|using System.Threading.Tasks|
|
|using System.Threading.Tasks|
|
||||||
Generated Location: (222:9,0 [28] )
|
Generated Location: (266:10,0 [28] )
|
||||||
|using System.Threading.Tasks|
|
|using System.Threading.Tasks|
|
||||||
|
|
||||||
Source Location: (48:1,17 [7] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (48:1,17 [7] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
|
||||||
|
|
@ -6,12 +6,12 @@ namespace Test
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using Microsoft.AspNetCore.Components;
|
||||||
#line 1 "x:\dir\subdir\Test\TestComponent.cshtml"
|
#line 1 "x:\dir\subdir\Test\TestComponent.cshtml"
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
using Microsoft.AspNetCore.Components;
|
|
||||||
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,8 @@ Document -
|
||||||
UsingDirective - (3:1,1 [12] ) - System
|
UsingDirective - (3:1,1 [12] ) - System
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
|
||||||
UsingDirective - (104:5,1 [37] ) - Microsoft.AspNetCore.Components
|
UsingDirective - (104:5,1 [37] ) - Microsoft.AspNetCore.Components
|
||||||
|
UsingDirective - (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [36] ) - "*, Microsoft.AspNetCore.Components"
|
DirectiveToken - (14:0,14 [36] ) - "*, Microsoft.AspNetCore.Components"
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
Source Location: (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|using System.Threading.Tasks|
|
|using System.Threading.Tasks|
|
||||||
Generated Location: (222:9,0 [28] )
|
Generated Location: (266:10,0 [28] )
|
||||||
|using System.Threading.Tasks|
|
|using System.Threading.Tasks|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,12 +6,12 @@ namespace Test
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using Microsoft.AspNetCore.Components;
|
||||||
#line 1 "x:\dir\subdir\Test\TestComponent.cshtml"
|
#line 1 "x:\dir\subdir\Test\TestComponent.cshtml"
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
using Microsoft.AspNetCore.Components;
|
|
||||||
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,8 @@ Document -
|
||||||
UsingDirective - (3:1,1 [12] ) - System
|
UsingDirective - (3:1,1 [12] ) - System
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
|
||||||
UsingDirective - (104:5,1 [37] ) - Microsoft.AspNetCore.Components
|
UsingDirective - (104:5,1 [37] ) - Microsoft.AspNetCore.Components
|
||||||
|
UsingDirective - (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [36] ) - "*, Microsoft.AspNetCore.Components"
|
DirectiveToken - (14:0,14 [36] ) - "*, Microsoft.AspNetCore.Components"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
Source Location: (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|using System.Threading.Tasks|
|
|using System.Threading.Tasks|
|
||||||
Generated Location: (222:9,0 [28] )
|
Generated Location: (266:10,0 [28] )
|
||||||
|using System.Threading.Tasks|
|
|using System.Threading.Tasks|
|
||||||
|
|
||||||
Source Location: (48:1,17 [7] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (48:1,17 [7] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
|
||||||
|
|
@ -3,15 +3,15 @@
|
||||||
namespace Test
|
namespace Test
|
||||||
{
|
{
|
||||||
#line hidden
|
#line hidden
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Components;
|
||||||
#line 1 "x:\dir\subdir\Test\TestComponent.cshtml"
|
#line 1 "x:\dir\subdir\Test\TestComponent.cshtml"
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using Microsoft.AspNetCore.Components;
|
|
||||||
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
Document -
|
Document -
|
||||||
NamespaceDeclaration - - Test
|
NamespaceDeclaration - - Test
|
||||||
UsingDirective - (1:0,1 [12] x:\dir\subdir\Test\TestComponent.cshtml) - System
|
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
UsingDirective - (104:5,1 [37] ) - Microsoft.AspNetCore.Components
|
UsingDirective - (104:5,1 [37] ) - Microsoft.AspNetCore.Components
|
||||||
|
UsingDirective - (1:0,1 [12] x:\dir\subdir\Test\TestComponent.cshtml) - System
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [36] ) - "*, Microsoft.AspNetCore.Components"
|
DirectiveToken - (14:0,14 [36] ) - "*, Microsoft.AspNetCore.Components"
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
Source Location: (1:0,1 [12] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (1:0,1 [12] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|using System|
|
|using System|
|
||||||
Generated Location: (140:6,0 [12] )
|
Generated Location: (282:10,0 [12] )
|
||||||
|using System|
|
|using System|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,8 +6,8 @@ namespace Test
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
|
||||||
using Microsoft.AspNetCore.Components;
|
using Microsoft.AspNetCore.Components;
|
||||||
|
using System.Threading.Tasks;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
||||||
{
|
{
|
||||||
#pragma warning disable 1998
|
#pragma warning disable 1998
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,8 @@ Document -
|
||||||
UsingDirective - (3:1,1 [14] ) - System
|
UsingDirective - (3:1,1 [14] ) - System
|
||||||
UsingDirective - (18:2,1 [34] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [34] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [19] ) - System.Linq
|
UsingDirective - (53:3,1 [19] ) - System.Linq
|
||||||
UsingDirective - (1:0,1 [30] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
|
||||||
UsingDirective - (104:5,1 [39] ) - Microsoft.AspNetCore.Components
|
UsingDirective - (104:5,1 [39] ) - Microsoft.AspNetCore.Components
|
||||||
|
UsingDirective - (1:0,1 [30] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
||||||
MethodDeclaration - - protected override - void - BuildRenderTree
|
MethodDeclaration - - protected override - void - BuildRenderTree
|
||||||
CSharpCode -
|
CSharpCode -
|
||||||
|
|
|
||||||
|
|
@ -6,8 +6,8 @@ namespace Test
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
|
||||||
using Microsoft.AspNetCore.Components;
|
using Microsoft.AspNetCore.Components;
|
||||||
|
using System.Threading.Tasks;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
||||||
{
|
{
|
||||||
#pragma warning disable 1998
|
#pragma warning disable 1998
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,8 @@ Document -
|
||||||
UsingDirective - (3:1,1 [14] ) - System
|
UsingDirective - (3:1,1 [14] ) - System
|
||||||
UsingDirective - (18:2,1 [34] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [34] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [19] ) - System.Linq
|
UsingDirective - (53:3,1 [19] ) - System.Linq
|
||||||
UsingDirective - (1:0,1 [30] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
|
||||||
UsingDirective - (104:5,1 [39] ) - Microsoft.AspNetCore.Components
|
UsingDirective - (104:5,1 [39] ) - Microsoft.AspNetCore.Components
|
||||||
|
UsingDirective - (1:0,1 [30] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
||||||
MethodDeclaration - - protected override - void - BuildRenderTree
|
MethodDeclaration - - protected override - void - BuildRenderTree
|
||||||
CSharpCode -
|
CSharpCode -
|
||||||
|
|
|
||||||
|
|
@ -6,8 +6,8 @@ namespace Test
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
|
||||||
using Microsoft.AspNetCore.Components;
|
using Microsoft.AspNetCore.Components;
|
||||||
|
using System.Threading.Tasks;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
||||||
{
|
{
|
||||||
#pragma warning disable 1998
|
#pragma warning disable 1998
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,8 @@ Document -
|
||||||
UsingDirective - (3:1,1 [14] ) - System
|
UsingDirective - (3:1,1 [14] ) - System
|
||||||
UsingDirective - (18:2,1 [34] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [34] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [19] ) - System.Linq
|
UsingDirective - (53:3,1 [19] ) - System.Linq
|
||||||
UsingDirective - (1:0,1 [30] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
|
||||||
UsingDirective - (104:5,1 [39] ) - Microsoft.AspNetCore.Components
|
UsingDirective - (104:5,1 [39] ) - Microsoft.AspNetCore.Components
|
||||||
|
UsingDirective - (1:0,1 [30] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
||||||
MethodDeclaration - - protected override - void - BuildRenderTree
|
MethodDeclaration - - protected override - void - BuildRenderTree
|
||||||
CSharpCode -
|
CSharpCode -
|
||||||
|
|
|
||||||
|
|
@ -6,8 +6,8 @@ namespace Test
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
|
||||||
using Microsoft.AspNetCore.Components;
|
using Microsoft.AspNetCore.Components;
|
||||||
|
using System.Threading.Tasks;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
||||||
{
|
{
|
||||||
#pragma warning disable 1998
|
#pragma warning disable 1998
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,8 @@ Document -
|
||||||
UsingDirective - (3:1,1 [14] ) - System
|
UsingDirective - (3:1,1 [14] ) - System
|
||||||
UsingDirective - (18:2,1 [34] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [34] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [19] ) - System.Linq
|
UsingDirective - (53:3,1 [19] ) - System.Linq
|
||||||
UsingDirective - (1:0,1 [30] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
|
||||||
UsingDirective - (104:5,1 [39] ) - Microsoft.AspNetCore.Components
|
UsingDirective - (104:5,1 [39] ) - Microsoft.AspNetCore.Components
|
||||||
|
UsingDirective - (1:0,1 [30] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
||||||
MethodDeclaration - - protected override - void - BuildRenderTree
|
MethodDeclaration - - protected override - void - BuildRenderTree
|
||||||
CSharpCode -
|
CSharpCode -
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,11 @@
|
||||||
namespace Test
|
namespace Test
|
||||||
{
|
{
|
||||||
#line hidden
|
#line hidden
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.AspNetCore.Components;
|
using Microsoft.AspNetCore.Components;
|
||||||
|
using System;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
public class TestComponent : Microsoft.AspNetCore.Components.ComponentBase
|
||||||
{
|
{
|
||||||
#pragma warning disable 1998
|
#pragma warning disable 1998
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
Document -
|
Document -
|
||||||
NamespaceDeclaration - - Test
|
NamespaceDeclaration - - Test
|
||||||
UsingDirective - (1:0,1 [14] x:\dir\subdir\Test\TestComponent.cshtml) - System
|
|
||||||
UsingDirective - (18:2,1 [34] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [34] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [19] ) - System.Linq
|
UsingDirective - (53:3,1 [19] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [30] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [30] ) - System.Threading.Tasks
|
||||||
UsingDirective - (104:5,1 [39] ) - Microsoft.AspNetCore.Components
|
UsingDirective - (104:5,1 [39] ) - Microsoft.AspNetCore.Components
|
||||||
|
UsingDirective - (1:0,1 [14] x:\dir\subdir\Test\TestComponent.cshtml) - System
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Components.ComponentBase -
|
||||||
MethodDeclaration - - protected override - void - BuildRenderTree
|
MethodDeclaration - - protected override - void - BuildRenderTree
|
||||||
CSharpCode -
|
CSharpCode -
|
||||||
|
|
|
||||||
|
|
@ -1,24 +1,16 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<!-- Requires 2.1 because of the dependency on applications -->
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
<!-- WebDriver is not strong-named signed -->
|
<!-- WebDriver is not strong-named signed -->
|
||||||
<SignAssembly>false</SignAssembly>
|
<SignAssembly>false</SignAssembly>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<!--
|
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="$(AspNetCorePackageVersion)" />
|
||||||
Lots of specific versions used here because:
|
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="$(AspNetCorePackageVersion)" />
|
||||||
1. We want to require 2.1.0 in our libraries
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="$(AspNetCorePackageVersion)" />
|
||||||
2. We have a special requirement for Razor.Design at 2.1.2 - this is OK because it's non-transitive
|
|
||||||
3. We want to test against 2.1.3 in our applications
|
|
||||||
|
|
||||||
-->
|
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.1.1" />
|
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.1.2" />
|
|
||||||
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.1.1" />
|
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
|
||||||
<PackageReference Include="Selenium.Support" Version="3.12.0" />
|
<PackageReference Include="Selenium.Support" Version="3.12.0" />
|
||||||
<PackageReference Include="Selenium.WebDriver" Version="3.12.0" />
|
<PackageReference Include="Selenium.WebDriver" Version="3.12.0" />
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
|
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Retains compilation settings so we can create a compilation during tests with the same data
|
Retains compilation settings so we can create a compilation during tests with the same data
|
||||||
used to compile this assembly.
|
used to compile this assembly.
|
||||||
-->
|
-->
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
|
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
@ -14,7 +14,7 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
||||||
<!-- Shared sources -->
|
<!-- Shared sources -->
|
||||||
<Compile Include="..\shared\**\*.cs" Link="Helpers\%(Filename)%(Extension)" />
|
<Compile Include="..\shared\**\*.cs" Link="Helpers\%(Filename)%(Extension)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,13 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.AspNetCore.App" Version="$(MicrosoftAspNetCoreAppPackageVersion)" />
|
<PackageReference Include="Microsoft.AspNetCore" Version="$(AspNetCorePackageVersion)" />
|
||||||
|
<PackageReference Include="Microsoft.AspNetCore.Cors" Version="$(AspNetCorePackageVersion)" />
|
||||||
|
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="$(AspNetCorePackageVersion)" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="$(MicrosoftAspNetCoreRazorDesignPackageVersion)" />
|
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="$(MicrosoftAspNetCoreRazorDesignPackageVersion)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue