dotnet / linker

389 stars 127 forks source link

Blazor linking throws "Unhandled exception. System.NullReferenceException: Object reference not set to an instance of an object." #2896

Open sturlath opened 2 years ago

sturlath commented 2 years ago

When I run the following dotnet publish --configuration Release on my Blazor WASM I get the error here below that doesn´t tell me anything useful

This is the content of my csproj if that helps

<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">

<Import Project="..\..\common.props" />

<PropertyGroup>
  <TargetFramework>net6.0</TargetFramework>
  <BlazorWebAssemblyLoadAllGlobalizationData>true</BlazorWebAssemblyLoadAllGlobalizationData>
  <BlazorWebAssemblyEnableLinking>true</BlazorWebAssemblyEnableLinking>
  <PublishTrimmed>true</PublishTrimmed>
  <ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest>
</PropertyGroup>

<ItemGroup>
  <ServiceWorker Include="wwwroot\service-worker.js" PublishedContent="wwwroot\service-worker.published.js" />
</ItemGroup>

<ItemGroup>
  <ProjectReference Include="..\BSR.Beinni.HttpApi.Client\BSR.Beinni.HttpApi.Client.csproj" />
</ItemGroup>

<ItemGroup>
  <None Include="wwwroot\assets\fonts\poppins-v6-latin-100.woff2" />
  <None Include="wwwroot\assets\fonts\poppins-v6-latin-200.woff2" />
  <None Include="wwwroot\assets\fonts\poppins-v6-latin-300.woff2" />
  <None Include="wwwroot\assets\fonts\poppins-v6-latin-600.woff2" />
  <None Include="wwwroot\assets\fonts\poppins-v6-latin-600italic.woff2" />
  <None Include="wwwroot\assets\fonts\poppins-v6-latin-700.woff2" />
  <None Include="wwwroot\assets\fonts\poppins-v6-latin-700italic.woff2" />
  <None Include="wwwroot\assets\fonts\poppins-v6-latin-italic.woff2" />
  <None Include="wwwroot\assets\fonts\poppins-v6-latin-regular.woff2" />
</ItemGroup>

    <ItemGroup>
        <PackageReference Include="BlazorDownloadFileFast" Version="0.2.0" />
        <PackageReference Include="Blazored.LocalStorage" Version="4.2.0" />
        <PackageReference Include="Blazorise.Charts" Version="1.0.4" />
        <PackageReference Include="Blazorise.SpinKit" Version="1.0.4" />
        <PackageReference Include="Blazorise.Video" Version="1.0.4" />
        <PackageReference Include="Blazorise.Bootstrap5" Version="1.0.4" />
        <PackageReference Include="Blazorise.Icons.FontAwesome" Version="1.0.4" />
        <PackageReference Include="Blazorise.Components" Version="1.0.4" />
        <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.5" />
        <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.5" PrivateAssets="all" />
        <PackageReference Include="Microsoft.AspNetCore.ResponseCompression" Version="2.2.0" />
        <PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="6.0.6" />
        <PackageReference Include="Mindscape.Raygun4Net.NetCore" Version="6.4.3" />
        <PackageReference Include="Syncfusion.Blazor.FileManager" Version="20.1.0.61" />
        <PackageReference Include="Volo.Abp.AspNetCore.Components.Web.Theming" Version="5.3.2" />
        <PackageReference Include="Volo.Payment.Admin.Blazor" Version="5.3.2" />
        <PackageReference Include="Volo.Payment.Admin.Blazor.WebAssembly" Version="5.3.2" />
        <PackageReference Include="Volo.Abp.Autofac.WebAssembly" Version="5.3.2" />
        <PackageReference Include="Volo.Abp.SettingManagement.Blazor.WebAssembly" Version="5.3.2" />
        <PackageReference Include="Volo.Abp.Identity.Pro.Blazor.WebAssembly" Version="5.3.2" />
        <PackageReference Include="Volo.Saas.Host.Blazor.WebAssembly" Version="5.3.2" />
        <PackageReference Include="Volo.Abp.AspNetCore.Components.WebAssembly.LeptonTheme" Version="5.3.2" />
        <PackageReference Include="Volo.Abp.LeptonTheme.Management.Blazor.WebAssembly" Version="5.3.2" />
        <PackageReference Include="Volo.Abp.Account.Pro.Admin.Blazor.WebAssembly" Version="5.3.2" />
        <PackageReference Include="Volo.Abp.Account.Pro.Public.Blazor" Version="5.3.2" />
        <PackageReference Include="Volo.Abp.TextTemplateManagement.Blazor.WebAssembly" Version="5.3.2" />
        <PackageReference Include="Volo.Abp.AuditLogging.Blazor.WebAssembly" Version="5.3.2" />
        <PackageReference Include="Volo.Abp.LanguageManagement.Blazor.WebAssembly" Version="5.3.2" />
        <PackageReference Include="Volo.Abp.IdentityServer.Blazor.WebAssembly" Version="5.3.2" />
    </ItemGroup>
</Project>

This the whole error

BSR.Beinni.Blazor -> C:\dev\IBeinni\aspnet-core\src\BSR.Beinni.Blazor\bin\Release\net6.0\BSR.Beinni.Blazor.dll
  BSR.Beinni.Blazor (Blazor output) -> C:\dev\IBeinni\aspnet-core\src\BSR.Beinni.Blazor\bin\Release\net6.0\wwwroot
ILLink : error IL1012: IL Trimmer has encountered an unexpected error. Please report the issue at https://github.com/dotnet/linker/issues [C:\dev\IBeinni\aspnet-co
re\src\BSR.Beinni.Blazor\BSR.Beinni.Blazor.csproj]
  Fatal error in IL Linker
  Unhandled exception. System.NullReferenceException: Object reference not set to an instance of an object.
     at Mono.Linker.TypeReferenceWalker.WalkMethodReference(MethodReference mr)
     at Mono.Linker.TypeReferenceWalker.WalkTypeScope(MethodBody body)
     at Mono.Linker.TypeReferenceWalker.WalkScopes(TypeDefinition typeDefinition)
     at Mono.Linker.TypeReferenceWalker.Process()
     at Mono.Linker.Steps.MarkStep.MarkEntireAssembly(AssemblyDefinition assembly)
     at Mono.Linker.Steps.MarkStep.MarkAssembly(AssemblyDefinition assembly, DependencyInfo reason)
     at Mono.Linker.Steps.MarkStep.MarkModule(ModuleDefinition module, DependencyInfo reason)
     at Mono.Linker.Steps.MarkStep.MarkType(TypeReference reference, DependencyInfo reason, Nullable`1 origin)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArgument(CustomAttributeArgument argument, ICustomAttribute ca)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArgument(CustomAttributeArgument argument, ICustomAttribute ca)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArguments(CustomAttribute ca)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttribute(CustomAttribute ca, DependencyInfo& reason)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttributes(ICustomAttributeProvider provider, DependencyInfo& reason)
     at Mono.Linker.Steps.MarkStep.MarkEntireType(TypeDefinition type, DependencyInfo& reason)
     at Mono.Linker.Steps.MarkStep.MarkEntireAssembly(AssemblyDefinition assembly)
     at Mono.Linker.Steps.MarkStep.MarkAssembly(AssemblyDefinition assembly, DependencyInfo reason)
     at Mono.Linker.Steps.MarkStep.MarkModule(ModuleDefinition module, DependencyInfo reason)
     at Mono.Linker.Steps.MarkStep.MarkType(TypeReference reference, DependencyInfo reason, Nullable`1 origin)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArgument(CustomAttributeArgument argument, ICustomAttribute ca)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArgument(CustomAttributeArgument argument, ICustomAttribute ca)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArguments(CustomAttribute ca)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttribute(CustomAttribute ca, DependencyInfo& reason)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttributes(ICustomAttributeProvider provider, DependencyInfo& reason)
     at Mono.Linker.Steps.MarkStep.MarkEntireType(TypeDefinition type, DependencyInfo& reason)
     at Mono.Linker.Steps.MarkStep.MarkEntireAssembly(AssemblyDefinition assembly)
     at Mono.Linker.Steps.MarkStep.MarkAssembly(AssemblyDefinition assembly, DependencyInfo reason)
     at Mono.Linker.Steps.MarkStep.MarkModule(ModuleDefinition module, DependencyInfo reason)
     at Mono.Linker.Steps.MarkStep.MarkType(TypeReference reference, DependencyInfo reason, Nullable`1 origin)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArgument(CustomAttributeArgument argument, ICustomAttribute ca)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArgument(CustomAttributeArgument argument, ICustomAttribute ca)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArguments(CustomAttribute ca)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttribute(CustomAttribute ca, DependencyInfo& reason)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttributes(ICustomAttributeProvider provider, DependencyInfo& reason)
     at Mono.Linker.Steps.MarkStep.MarkEntireType(TypeDefinition type, DependencyInfo& reason)
     at Mono.Linker.Steps.MarkStep.MarkEntireAssembly(AssemblyDefinition assembly)
     at Mono.Linker.Steps.MarkStep.MarkAssembly(AssemblyDefinition assembly, DependencyInfo reason)
     at Mono.Linker.Steps.MarkStep.MarkModule(ModuleDefinition module, DependencyInfo reason)
     at Mono.Linker.Steps.MarkStep.MarkType(TypeReference reference, DependencyInfo reason, Nullable`1 origin)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArgument(CustomAttributeArgument argument, ICustomAttribute ca)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArgument(CustomAttributeArgument argument, ICustomAttribute ca)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArguments(CustomAttribute ca)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttribute(CustomAttribute ca, DependencyInfo& reason)
     at Mono.Linker.Steps.MarkStep.MarkCustomAttributes(ICustomAttributeProvider provider, DependencyInfo& reason)
     at Mono.Linker.Steps.MarkStep.MarkType(TypeReference reference, DependencyInfo reason, Nullable`1 origin)
     at Mono.Linker.Steps.MarkStep.MarkType(TypeReference reference, DependencyInfo reason, Nullable`1 origin)
     at Mono.Linker.Steps.MarkStep.MarkField(FieldDefinition field, DependencyInfo& reason)
     at Mono.Linker.Steps.MarkStep.MarkEntireType(TypeDefinition type, DependencyInfo& reason)
     at Mono.Linker.Steps.MarkStep.MarkEntireType(TypeDefinition type, DependencyInfo& reason)
     at Mono.Linker.Steps.MarkStep.MarkEntireAssembly(AssemblyDefinition assembly)
     at Mono.Linker.Steps.MarkStep.MarkAssembly(AssemblyDefinition assembly, DependencyInfo reason)
     at Mono.Linker.Steps.MarkStep.ProcessMarkedPending()
     at Mono.Linker.Steps.MarkStep.Initialize()
     at Mono.Linker.Steps.MarkStep.Process(LinkContext context)
     at Mono.Linker.Pipeline.ProcessStep(LinkContext context, IStep step)
     at Mono.Linker.Pipeline.Process(LinkContext context)
     at Mono.Linker.Driver.Run(ILogger customLogger)
     at Mono.Linker.Driver.Main(String[] args)
  Optimizing assemblies for size, which may change the behavior of the app. Be sure to test after publishing. See: https://aka.ms/dotnet-illink
C:\Program Files\dotnet\sdk\6.0.400-preview.22301.10\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.ILLink.targets(109,5): error NETSDK1144: Optimizing assemblies fo
r size failed. Optimization can be disabled by setting the PublishTrimmed property to false. [C:\dev\IBeinni\aspnet-core\src\BSR.Beinni.Blazor\BSR.Beinni.Blazor.cs
proj]
sturlath commented 2 years ago

If I do a publish from Visual Studio I get some more information. Note that the app builds and runs fine without this trimming but is wooping 15 MB so I´m looking to get that a lot smaller...

Build started...
1>------ Build started: Project: BSR.Beinni.Domain.Shared, Configuration: Release Any CPU ------
2>------ Build started: Project: BSR.Beinni.Blazor, Configuration: Release Any CPU ------
3>------ Publish started: Project: BSR.Beinni.Blazor, Configuration: Release Any CPU ------
Connecting to C:\Dev\IBeinni\aspnet-core\src\BSR.Beinni.Blazor\bin\Release\net6.0\browser-wasm\publish\...
You are using a preview version of .NET. See: https://aka.ms/dotnet-core-preview
C:\Program Files\Microsoft Visual Studio\2022\Preview\MSBuild\Current\Bin\Roslyn\csc.exe /noconfig /unsafe- /checked- /nowarn:1701,1702,CS1591,IL2026,IL2041,IL2042,IL2043,IL2056,IL2045,IL2046,IL2050,IL2032,IL2055,IL2057,IL2058,IL2059,IL2060,IL2061,IL2096,IL2062,IL2063,IL2064,IL2065,IL2066,IL2067,IL2068,IL2069,IL2070,IL2071,IL2072,IL2073,IL2074,IL2075,IL2076,IL2077,IL2078,IL2079,IL2080,IL2081,IL2082,IL2083,IL2084,IL2085,IL2086,IL2087,IL2088,IL2089,IL2090,IL2091,IL2092,IL2093,IL2094,IL2095,IL2097,IL2098,IL2099,IL2106,IL2103,IL2107,IL2109,IL2110,IL2111,IL2114,IL2115,IL2112,IL2113,1701,1702,2008 /fullpaths /nostdlib+ /platform:AnyCPU /errorreport:prompt /warn:6 /define:TRACE;RELEASE;NET;NET6_0;NETCOREAPP;NET5_0_OR_GREATER;NET6_0_OR_GREATER;NETCOREAPP1_0_OR_GREATER;NETCOREAPP1_1_OR_GREATER;NETCOREAPP2_0_OR_GREATER;NETCOREAPP2_1_OR_GREATER;NETCOREAPP2_2_OR_GREATER;NETCOREAPP3_0_OR_GREATER;NETCOREAPP3_1_OR_GREATER /errorendlocation /preferreduilang:en-US /highentropyva+ /reference:C:\Users\sturlath\.nuget\packages\autofac\6.3.0\lib\net5.0\Autofac.dll /reference:C:\Users\sturlath\.nuget\packages\autofac.extensions.dependencyinjection\7.2.0\lib\net6.0\Autofac.Extensions.DependencyInjection.dll /reference:C:\Users\sturlath\.nuget\packages\autofac.extras.dynamicproxy\6.0.1\lib\netstandard2.1\Autofac.Extras.DynamicProxy.dll /reference:C:\Users\sturlath\.nuget\packages\automapper\11.0.1\lib\netstandard2.1\AutoMapper.dll /reference:C:\Users\sturlath\.nuget\packages\blazordownloadfilefast\0.2.0\lib\net6.0\Blazor.DownloadFileFast.dll /reference:C:\Users\sturlath\.nuget\packages\blazored.localstorage\4.2.0\lib\net6.0\Blazored.LocalStorage.dll /reference:C:\Users\sturlath\.nuget\packages\blazorise.bootstrap5\1.0.4\lib\net6.0\Blazorise.Bootstrap5.dll /reference:C:\Users\sturlath\.nuget\packages\blazorise.charts\1.0.4\lib\net6.0\Blazorise.Charts.dll /reference:C:\Users\sturlath\.nuget\packages\blazorise.components\1.0.4\lib\net6.0\Blazorise.Components.dll /reference:C:\Users\sturlath\.nuget\packages\blazorise.datagrid\1.0.4\lib\net6.0\Blazorise.DataGrid.dll /reference:C:\Users\sturlath\.nuget\packages\blazorise\1.0.4\lib\net6.0\Blazorise.dll /reference:C:\Users\sturlath\.nuget\packages\blazorise.icons.fontawesome\1.0.4\lib\net6.0\Blazorise.Icons.FontAwesome.dll /reference:C:\Users\sturlath\.nuget\packages\blazorise.snackbar\1.0.4\lib\net6.0\Blazorise.Snackbar.dll /reference:C:\Users\sturlath\.nuget\packages\blazorise.spinkit\1.0.4\lib\net6.0\Blazorise.SpinKit.dll /reference:C:\Users\sturlath\.nuget\packages\blazorise.treeview\1.0.4\lib\net6.0\Blazorise.TreeView.dll /reference:C:\Users\sturlath\.nuget\packages\blazorise.video\1.0.4\lib\net6.0\Blazorise.Video.dll /reference:C:\Users\sturlath\.nuget\packages\portable.bouncycastle\1.8.5.2\lib\netstandard2.0\BouncyCastle.Crypto.dll /reference:C:\Dev\IBeinni\aspnet-core\src\BSR.Beinni.Application.Contracts\bin\Release\netstandard2.0\BSR.Beinni.Application.Contracts.dll /reference:C:\Dev\IBeinni\aspnet-core\src\BSR.Beinni.Domain.Shared\bin\Release\netstandard2.0\BSR.Beinni.Domain.Shared.dll /reference:C:\Dev\IBeinni\aspnet-core\src\BSR.Beinni.HttpApi.Client\bin\Release\netstandard2.0\BSR.Beinni.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\castle.core.asyncinterceptor\2.1.0\lib\net6.0\Castle.Core.AsyncInterceptor.dll /reference:C:\Users\sturlath\.nuget\packages\castle.core\5.0.0\lib\net6.0\Castle.Core.dll /reference:C:\Users\sturlath\.nuget\packages\identitymodel\5.1.0\lib\net5.0\IdentityModel.dll /reference:C:\Users\sturlath\.nuget\packages\jetbrains.annotations\2022.1.0\lib\netstandard2.0\JetBrains.Annotations.dll /reference:C:\Users\sturlath\.nuget\packages\lambda2js\3.1.3\lib\netstandard1.0\Lambda2Js.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.authorization\6.0.5\lib\net6.0\Microsoft.AspNetCore.Authorization.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.components.authorization\6.0.5\lib\net6.0\Microsoft.AspNetCore.Components.Authorization.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.components\6.0.5\lib\net6.0\Microsoft.AspNetCore.Components.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.components.forms\6.0.5\lib\net6.0\Microsoft.AspNetCore.Components.Forms.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.components.web\6.0.5\lib\net6.0\Microsoft.AspNetCore.Components.Web.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.components.webassembly.authentication\6.0.5\lib\net6.0\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.components.webassembly\6.0.5\lib\net6.0\Microsoft.AspNetCore.Components.WebAssembly.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.connections.abstractions\6.0.6\lib\net6.0\Microsoft.AspNetCore.Connections.Abstractions.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.http.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.Abstractions.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.http.connections.client\6.0.6\lib\net6.0\Microsoft.AspNetCore.Http.Connections.Client.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.http.connections.common\6.0.6\lib\net6.0\Microsoft.AspNetCore.Http.Connections.Common.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.http.extensions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.Extensions.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.http.features\5.0.17\lib\net5.0\Microsoft.AspNetCore.Http.Features.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.metadata\6.0.5\lib\net6.0\Microsoft.AspNetCore.Metadata.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.responsecompression\2.2.0\lib\netcoreapp2.1\Microsoft.AspNetCore.ResponseCompression.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.signalr.client.core\6.0.6\lib\net6.0\Microsoft.AspNetCore.SignalR.Client.Core.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.signalr.client\6.0.6\lib\net6.0\Microsoft.AspNetCore.SignalR.Client.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.signalr.common\6.0.6\lib\net6.0\Microsoft.AspNetCore.SignalR.Common.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.signalr.protocols.json\6.0.6\lib\net6.0\Microsoft.AspNetCore.SignalR.Protocols.Json.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.webutilities\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.WebUtilities.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.azure.eventgrid\3.2.1\lib\netstandard2.0\Microsoft.Azure.EventGrid.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.azure.management.media\6.0.0\lib\netstandard2.0\Microsoft.Azure.Management.Media.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.bcl.asyncinterfaces\6.0.0\lib\netstandard2.1\Microsoft.Bcl.AsyncInterfaces.dll /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\Microsoft.CSharp.dll" /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.caching.abstractions\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Caching.Abstractions.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.caching.memory\6.0.1\lib\netstandard2.0\Microsoft.Extensions.Caching.Memory.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.configuration.abstractions\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Abstractions.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.configuration.binder\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Binder.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.configuration.commandline\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.CommandLine.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.configuration\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.configuration.environmentvariables\6.0.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.EnvironmentVariables.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.configuration.fileextensions\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.FileExtensions.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.configuration.json\6.0.0\lib\netstandard2.1\Microsoft.Extensions.Configuration.Json.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.configuration.usersecrets\6.0.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.dependencyinjection.abstractions\6.0.0\lib\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.dependencyinjection\6.0.0\lib\net6.0\Microsoft.Extensions.DependencyInjection.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.features\6.0.6\lib\net6.0\Microsoft.Extensions.Features.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.fileproviders.abstractions\6.0.0\lib\net6.0\Microsoft.Extensions.FileProviders.Abstractions.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.fileproviders.composite\6.0.0\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Composite.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.fileproviders.embedded\6.0.5\lib\net6.0\Microsoft.Extensions.FileProviders.Embedded.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.fileproviders.physical\6.0.0\lib\net6.0\Microsoft.Extensions.FileProviders.Physical.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.filesystemglobbing\6.0.0\lib\net6.0\Microsoft.Extensions.FileSystemGlobbing.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.hosting.abstractions\6.0.0\lib\netstandard2.1\Microsoft.Extensions.Hosting.Abstractions.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.http\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Http.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.localization.abstractions\6.0.5\lib\net6.0\Microsoft.Extensions.Localization.Abstractions.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.localization\6.0.5\lib\net6.0\Microsoft.Extensions.Localization.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.logging.abstractions\6.0.1\lib\net6.0\Microsoft.Extensions.Logging.Abstractions.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.logging\6.0.0\lib\netstandard2.1\Microsoft.Extensions.Logging.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.options.configurationextensions\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.options\6.0.0\lib\netstandard2.1\Microsoft.Extensions.Options.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.extensions.primitives\6.0.0\lib\net6.0\Microsoft.Extensions.Primitives.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.jsinterop\6.0.5\lib\net6.0\Microsoft.JSInterop.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.jsinterop.webassembly\6.0.5\lib\net6.0\Microsoft.JSInterop.WebAssembly.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.net.http.headers\2.2.0\lib\netstandard2.0\Microsoft.Net.Http.Headers.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.rest.clientruntime.azure\3.3.19\lib\netstandard2.0\Microsoft.Rest.ClientRuntime.Azure.dll /reference:C:\Users\sturlath\.nuget\packages\microsoft.rest.clientruntime\2.3.20\lib\netstandard2.0\Microsoft.Rest.ClientRuntime.dll /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\Microsoft.VisualBasic.Core.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\Microsoft.VisualBasic.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\Microsoft.Win32.Primitives.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\Microsoft.Win32.Registry.dll" /reference:C:\Users\sturlath\.nuget\packages\mindscape.raygun4net.netcore.common\6.5.3\lib\net6.0\Mindscape.Raygun4Net.NetCore.Common.dll /reference:C:\Users\sturlath\.nuget\packages\mindscape.raygun4net.netcore\6.4.3\lib\net6.0\Mindscape.Raygun4Net.NetCore.dll /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\mscorlib.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\netstandard.dll" /reference:C:\Users\sturlath\.nuget\packages\newtonsoft.json\13.0.1\lib\netstandard2.0\Newtonsoft.Json.dll /reference:C:\Users\sturlath\.nuget\packages\nito.asyncex.context\5.1.2\lib\netstandard2.0\Nito.AsyncEx.Context.dll /reference:C:\Users\sturlath\.nuget\packages\nito.asyncex.coordination\5.1.2\lib\netstandard2.0\Nito.AsyncEx.Coordination.dll /reference:C:\Users\sturlath\.nuget\packages\nito.asyncex.tasks\5.1.2\lib\netstandard2.0\Nito.AsyncEx.Tasks.dll /reference:C:\Users\sturlath\.nuget\packages\nito.collections.deque\1.1.1\lib\netstandard2.0\Nito.Collections.Deque.dll /reference:C:\Users\sturlath\.nuget\packages\nito.disposables\2.2.1\lib\netstandard2.1\Nito.Disposables.dll /reference:C:\Users\sturlath\.nuget\packages\nuget.versioning\5.11.0\lib\netstandard2.0\NuGet.Versioning.dll /reference:C:\Users\sturlath\.nuget\packages\nuglify\1.20.0\lib\net5.0\NUglify.dll /reference:C:\Users\sturlath\.nuget\packages\scriban\5.4.4\lib\net6.0\Scriban.dll /reference:C:\Users\sturlath\.nuget\packages\syncfusion.blazor.buttons\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Buttons.dll /reference:C:\Users\sturlath\.nuget\packages\syncfusion.blazor.calendars\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Calendars.dll /reference:C:\Users\sturlath\.nuget\packages\syncfusion.blazor.core\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Core.dll /reference:C:\Users\sturlath\.nuget\packages\syncfusion.blazor.data\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Data.dll /reference:C:\Users\sturlath\.nuget\packages\syncfusion.blazor.dropdowns\20.1.0.61\lib\net6.0\Syncfusion.Blazor.DropDowns.dll /reference:C:\Users\sturlath\.nuget\packages\syncfusion.blazor.filemanager\20.1.0.61\lib\net6.0\Syncfusion.Blazor.FileManager.dll /reference:C:\Users\sturlath\.nuget\packages\syncfusion.blazor.grid\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Grids.dll /reference:C:\Users\sturlath\.nuget\packages\syncfusion.blazor.inputs\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Inputs.dll /reference:C:\Users\sturlath\.nuget\packages\syncfusion.blazor.layouts\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Layouts.dll /reference:C:\Users\sturlath\.nuget\packages\syncfusion.blazor.lists\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Lists.dll /reference:C:\Users\sturlath\.nuget\packages\syncfusion.blazor.navigations\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Navigations.dll /reference:C:\Users\sturlath\.nuget\packages\syncfusion.blazor.popups\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Popups.dll /reference:C:\Users\sturlath\.nuget\packages\syncfusion.blazor.spinner\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Spinner.dll /reference:C:\Users\sturlath\.nuget\packages\syncfusion.blazor.splitbuttons\20.1.0.61\lib\net6.0\Syncfusion.Blazor.SplitButtons.dll /reference:C:\Users\sturlath\.nuget\packages\syncfusion.excelexport.net.core\20.1.0.61\lib\net5.0\Syncfusion.ExcelExport.Net.dll /reference:C:\Users\sturlath\.nuget\packages\syncfusion.licensing\20.1.0.61\lib\net6.0\Syncfusion.Licensing.dll /reference:C:\Users\sturlath\.nuget\packages\syncfusion.pdfexport.net.core\20.1.0.61\lib\net5.0\Syncfusion.PdfExport.Net.dll /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.AppContext.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Buffers.dll" /reference:C:\Users\sturlath\.nuget\packages\system.codedom\4.7.0\ref\netstandard2.0\System.CodeDom.dll /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Collections.Concurrent.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Collections.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Collections.Immutable.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Collections.NonGeneric.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Collections.Specialized.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.ComponentModel.Annotations.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.ComponentModel.DataAnnotations.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.ComponentModel.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.ComponentModel.EventBasedAsync.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.ComponentModel.Primitives.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.ComponentModel.TypeConverter.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Configuration.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Console.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Core.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Data.Common.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Data.DataSetExtensions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Data.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Diagnostics.Contracts.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Diagnostics.Debug.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Diagnostics.DiagnosticSource.dll" /reference:C:\Users\sturlath\.nuget\packages\system.diagnostics.eventlog\6.0.0\lib\net6.0\System.Diagnostics.EventLog.dll /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Diagnostics.FileVersionInfo.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Diagnostics.Process.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Diagnostics.StackTrace.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Diagnostics.TextWriterTraceListener.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Diagnostics.Tools.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Diagnostics.TraceSource.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Diagnostics.Tracing.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Drawing.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Drawing.Primitives.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Dynamic.Runtime.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Formats.Asn1.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Globalization.Calendars.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Globalization.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Globalization.Extensions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.IO.Compression.Brotli.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.IO.Compression.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.IO.Compression.FileSystem.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.IO.Compression.ZipFile.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.IO.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.IO.FileSystem.AccessControl.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.IO.FileSystem.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.IO.FileSystem.DriveInfo.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.IO.FileSystem.Primitives.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.IO.FileSystem.Watcher.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.IO.IsolatedStorage.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.IO.MemoryMappedFiles.dll" /reference:C:\Users\sturlath\.nuget\packages\system.io.pipelines\6.0.3\lib\net6.0\System.IO.Pipelines.dll /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.IO.Pipes.AccessControl.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.IO.Pipes.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.IO.UnmanagedMemoryStream.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Linq.dll" /reference:C:\Users\sturlath\.nuget\packages\system.linq.dynamic.core\1.2.18\lib\net6.0\System.Linq.Dynamic.Core.dll /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Linq.Expressions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Linq.Parallel.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Linq.Queryable.dll" /reference:C:\Users\sturlath\.nuget\packages\system.management\4.7.0\ref\netstandard2.0\System.Management.dll /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Memory.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Net.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Net.Http.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Net.Http.Json.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Net.HttpListener.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Net.Mail.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Net.NameResolution.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Net.NetworkInformation.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Net.Ping.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Net.Primitives.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Net.Requests.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Net.Security.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Net.ServicePoint.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Net.Sockets.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Net.WebClient.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Net.WebHeaderCollection.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Net.WebProxy.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Net.WebSockets.Client.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Net.WebSockets.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Numerics.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Numerics.Vectors.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.ObjectModel.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Reflection.DispatchProxy.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Reflection.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Reflection.Emit.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Reflection.Emit.ILGeneration.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Reflection.Emit.Lightweight.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Reflection.Extensions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Reflection.Metadata.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Reflection.Primitives.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Reflection.TypeExtensions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Resources.Reader.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Resources.ResourceManager.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Resources.Writer.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Runtime.CompilerServices.Unsafe.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Runtime.CompilerServices.VisualC.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Runtime.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Runtime.Extensions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Runtime.Handles.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Runtime.InteropServices.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Runtime.InteropServices.RuntimeInformation.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Runtime.Intrinsics.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Runtime.Loader.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Runtime.Numerics.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Runtime.Serialization.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Runtime.Serialization.Formatters.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Runtime.Serialization.Json.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Runtime.Serialization.Primitives.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Runtime.Serialization.Xml.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Security.AccessControl.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Security.Claims.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Security.Cryptography.Algorithms.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Security.Cryptography.Cng.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Security.Cryptography.Csp.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Security.Cryptography.Encoding.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Security.Cryptography.OpenSsl.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Security.Cryptography.Primitives.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Security.Cryptography.X509Certificates.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Security.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Security.Principal.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Security.Principal.Windows.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Security.SecureString.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.ServiceModel.Web.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.ServiceProcess.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Text.Encoding.CodePages.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Text.Encoding.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Text.Encoding.Extensions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Text.Encodings.Web.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Text.Json.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Text.RegularExpressions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Threading.Channels.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Threading.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Threading.Overlapped.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Threading.Tasks.Dataflow.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Threading.Tasks.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Threading.Tasks.Extensions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Threading.Tasks.Parallel.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Threading.Thread.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Threading.ThreadPool.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Threading.Timer.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Transactions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Transactions.Local.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.ValueTuple.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Web.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Web.HttpUtility.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Windows.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Xml.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Xml.Linq.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Xml.ReaderWriter.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Xml.Serialization.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Xml.XDocument.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Xml.XmlDocument.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Xml.XmlSerializer.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Xml.XPath.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\System.Xml.XPath.XDocument.dll" /reference:C:\Users\sturlath\.nuget\packages\timezoneconverter\5.0.0\lib\netstandard2.0\TimeZoneConverter.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.account.pro.admin.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.Account.Pro.Admin.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.account.pro.admin.blazor\5.3.2\lib\net6.0\Volo.Abp.Account.Pro.Admin.Blazor.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.account.pro.admin.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.Account.Pro.Admin.Blazor.WebAssembly.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.account.pro.admin.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.Account.Pro.Admin.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.account.pro.public.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.Account.Pro.Public.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.account.pro.public.blazor\5.3.2\lib\net6.0\Volo.Abp.Account.Pro.Public.Blazor.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.account.pro.public.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.Account.Pro.Public.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.account.pro.shared.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.Account.Pro.Shared.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.aspnetcore.components\5.3.2\lib\net6.0\Volo.Abp.AspNetCore.Components.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.aspnetcore.components.web\5.3.2\lib\net6.0\Volo.Abp.AspNetCore.Components.Web.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.aspnetcore.components.web.leptontheme\5.3.2\lib\net6.0\Volo.Abp.AspNetCore.Components.Web.LeptonTheme.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.aspnetcore.components.web.theming\5.3.2\lib\net6.0\Volo.Abp.AspNetCore.Components.Web.Theming.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.aspnetcore.components.webassembly\5.3.2\lib\net6.0\Volo.Abp.AspNetCore.Components.WebAssembly.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.aspnetcore.components.webassembly.leptontheme\5.3.2\lib\net6.0\Volo.Abp.AspNetCore.Components.WebAssembly.LeptonTheme.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.aspnetcore.components.webassembly.theming\5.3.2\lib\net6.0\Volo.Abp.AspNetCore.Components.WebAssembly.Theming.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.aspnetcore.mvc.client.common\5.3.2\lib\netstandard2.0\Volo.Abp.AspNetCore.Mvc.Client.Common.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.aspnetcore.mvc.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.AspNetCore.Mvc.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.auditing.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.Auditing.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.auditing\5.3.2\lib\netstandard2.0\Volo.Abp.Auditing.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.auditlogging.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.AuditLogging.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.auditlogging.blazor\5.3.2\lib\net6.0\Volo.Abp.AuditLogging.Blazor.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.auditlogging.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.AuditLogging.Blazor.WebAssembly.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.auditlogging.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.AuditLogging.Domain.Shared.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.auditlogging.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.AuditLogging.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.authorization.abstractions\5.3.2\lib\netstandard2.0\Volo.Abp.Authorization.Abstractions.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.authorization\5.3.2\lib\netstandard2.0\Volo.Abp.Authorization.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.autofac\5.3.2\lib\netstandard2.0\Volo.Abp.Autofac.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.autofac.webassembly\5.3.2\lib\net6.0\Volo.Abp.Autofac.WebAssembly.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.automapper\5.3.2\lib\netstandard2.1\Volo.Abp.AutoMapper.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.backgroundjobs.abstractions\5.3.2\lib\netstandard2.0\Volo.Abp.BackgroundJobs.Abstractions.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.backgroundjobs.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.BackgroundJobs.Domain.Shared.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.backgroundworkers\5.3.2\lib\netstandard2.0\Volo.Abp.BackgroundWorkers.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.blazoriseui\5.3.2\lib\net6.0\Volo.Abp.BlazoriseUI.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.blobstoring.database.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.BlobStoring.Database.Domain.Shared.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.caching\5.3.2\lib\netstandard2.0\Volo.Abp.Caching.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.castle.core\5.3.2\lib\netstandard2.0\Volo.Abp.Castle.Core.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.commercial.core\5.3.2\lib\netstandard2.0\Volo.Abp.Commercial.Core.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.commercial.suitetemplates\5.3.2\lib\netstandard2.0\Volo.Abp.Commercial.SuiteTemplates.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.core\5.3.2\lib\netstandard2.0\Volo.Abp.Core.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.data\5.3.2\lib\netstandard2.0\Volo.Abp.Data.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.ddd.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.Ddd.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.ddd.domain\5.3.2\lib\netstandard2.0\Volo.Abp.Ddd.Domain.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.distributedlocking.abstractions\5.3.2\lib\netstandard2.0\Volo.Abp.DistributedLocking.Abstractions.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.emailing\5.3.2\lib\netstandard2.0\Volo.Abp.Emailing.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.eventbus.abstractions\5.3.2\lib\netstandard2.0\Volo.Abp.EventBus.Abstractions.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.eventbus\5.3.2\lib\netstandard2.0\Volo.Abp.EventBus.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.exceptionhandling\5.3.2\lib\netstandard2.0\Volo.Abp.ExceptionHandling.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.featuremanagement.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.FeatureManagement.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.featuremanagement.blazor\5.3.2\lib\net6.0\Volo.Abp.FeatureManagement.Blazor.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.featuremanagement.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.FeatureManagement.Blazor.WebAssembly.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.featuremanagement.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.FeatureManagement.Domain.Shared.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.featuremanagement.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.FeatureManagement.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.features\5.3.2\lib\netstandard2.0\Volo.Abp.Features.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.globalfeatures\5.3.2\lib\netstandard2.0\Volo.Abp.GlobalFeatures.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.guids\5.3.2\lib\netstandard2.0\Volo.Abp.Guids.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.http.abstractions\5.3.2\lib\netstandard2.0\Volo.Abp.Http.Abstractions.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.http.client\5.3.2\lib\netstandard2.0\Volo.Abp.Http.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.http.client.identitymodel\5.3.2\lib\netstandard2.0\Volo.Abp.Http.Client.IdentityModel.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.http.client.identitymodel.webassembly\5.3.2\lib\net6.0\Volo.Abp.Http.Client.IdentityModel.WebAssembly.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.http\5.3.2\lib\netstandard2.0\Volo.Abp.Http.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.identity.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.Identity.Domain.Shared.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.identity.pro.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.Identity.Pro.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.identity.pro.blazor\5.3.2\lib\net6.0\Volo.Abp.Identity.Pro.Blazor.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.identity.pro.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.Identity.Pro.Blazor.WebAssembly.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.identity.pro.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.Identity.Pro.Domain.Shared.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.identity.pro.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.Identity.Pro.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.identitymodel\5.3.2\lib\netstandard2.0\Volo.Abp.IdentityModel.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.identityserver.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.IdentityServer.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.identityserver.blazor\5.3.2\lib\net6.0\Volo.Abp.IdentityServer.Blazor.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.identityserver.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.IdentityServer.Blazor.WebAssembly.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.identityserver.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.IdentityServer.Domain.Shared.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.identityserver.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.IdentityServer.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.json\5.3.2\lib\netstandard2.0\Volo.Abp.Json.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.languagemanagement.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.LanguageManagement.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.languagemanagement.blazor\5.3.2\lib\net6.0\Volo.Abp.LanguageManagement.Blazor.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.languagemanagement.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.LanguageManagement.Blazor.WebAssembly.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.languagemanagement.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.LanguageManagement.Domain.Shared.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.languagemanagement.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.LanguageManagement.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.leptontheme.management.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.LeptonTheme.Management.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.leptontheme.management.blazor\5.3.2\lib\net6.0\Volo.Abp.LeptonTheme.Management.Blazor.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.leptontheme.management.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.LeptonTheme.Management.Blazor.WebAssembly.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.leptontheme.management.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.LeptonTheme.Management.Domain.Shared.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.leptontheme.management.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.LeptonTheme.Management.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.localization.abstractions\5.3.2\lib\netstandard2.0\Volo.Abp.Localization.Abstractions.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.localization\5.3.2\lib\netstandard2.0\Volo.Abp.Localization.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.minify\5.3.2\lib\netstandard2.0\Volo.Abp.Minify.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.multitenancy\5.3.2\lib\netstandard2.0\Volo.Abp.MultiTenancy.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.objectextending\5.3.2\lib\netstandard2.0\Volo.Abp.ObjectExtending.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.objectmapping\5.3.2\lib\netstandard2.0\Volo.Abp.ObjectMapping.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.permissionmanagement.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.PermissionManagement.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.permissionmanagement.blazor\5.3.2\lib\net6.0\Volo.Abp.PermissionManagement.Blazor.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.permissionmanagement.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.PermissionManagement.Blazor.WebAssembly.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.permissionmanagement.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.PermissionManagement.Domain.Shared.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.permissionmanagement.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.PermissionManagement.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.security\5.3.2\lib\netstandard2.0\Volo.Abp.Security.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.serialization\5.3.2\lib\netstandard2.0\Volo.Abp.Serialization.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.settingmanagement.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.SettingManagement.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.settingmanagement.blazor\5.3.2\lib\net6.0\Volo.Abp.SettingManagement.Blazor.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.settingmanagement.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.SettingManagement.Blazor.WebAssembly.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.settingmanagement.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.SettingManagement.Domain.Shared.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.settingmanagement.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.SettingManagement.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.settings\5.3.2\lib\netstandard2.0\Volo.Abp.Settings.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.specifications\5.3.2\lib\netstandard2.0\Volo.Abp.Specifications.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.texttemplatemanagement.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.TextTemplateManagement.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.texttemplatemanagement.blazor\5.3.2\lib\net6.0\Volo.Abp.TextTemplateManagement.Blazor.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.texttemplatemanagement.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.TextTemplateManagement.Blazor.WebAssembly.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.texttemplatemanagement.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.TextTemplateManagement.Domain.Shared.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.texttemplatemanagement.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.TextTemplateManagement.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.texttemplating.core\5.3.2\lib\netstandard2.0\Volo.Abp.TextTemplating.Core.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.texttemplating\5.3.2\lib\netstandard2.0\Volo.Abp.TextTemplating.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.texttemplating.scriban\5.3.2\lib\netstandard2.0\Volo.Abp.TextTemplating.Scriban.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.threading\5.3.2\lib\netstandard2.0\Volo.Abp.Threading.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.timing\5.3.2\lib\netstandard2.0\Volo.Abp.Timing.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.ui\5.3.2\lib\netstandard2.0\Volo.Abp.UI.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.ui.navigation\5.3.2\lib\netstandard2.0\Volo.Abp.UI.Navigation.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.uow\5.3.2\lib\netstandard2.0\Volo.Abp.Uow.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.users.abstractions\5.3.2\lib\netstandard2.0\Volo.Abp.Users.Abstractions.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.users.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.Users.Domain.Shared.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.validation.abstractions\5.3.2\lib\netstandard2.0\Volo.Abp.Validation.Abstractions.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.validation\5.3.2\lib\netstandard2.0\Volo.Abp.Validation.dll /reference:C:\Users\sturlath\.nuget\packages\volo.abp.virtualfilesystem\5.3.2\lib\netstandard2.0\Volo.Abp.VirtualFileSystem.dll /reference:C:\Users\sturlath\.nuget\packages\volo.cmskit.admin.application.contracts\5.3.2\lib\netstandard2.0\Volo.CmsKit.Admin.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.cmskit.admin.httpapi.client\5.3.2\lib\netstandard2.0\Volo.CmsKit.Admin.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.cmskit.application.contracts\5.3.2\lib\netstandard2.0\Volo.CmsKit.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.cmskit.common.application.contracts\5.3.2\lib\netstandard2.0\Volo.CmsKit.Common.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.cmskit.common.httpapi.client\5.3.2\lib\netstandard2.0\Volo.CmsKit.Common.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.cmskit.domain.shared\5.3.2\lib\netstandard2.0\Volo.CmsKit.Domain.Shared.dll /reference:C:\Users\sturlath\.nuget\packages\volo.cmskit.httpapi.client\5.3.2\lib\netstandard2.0\Volo.CmsKit.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.cmskit.pro.admin.application.contracts\5.3.2\lib\netstandard2.0\Volo.CmsKit.Pro.Admin.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.cmskit.pro.admin.httpapi.client\5.3.2\lib\netstandard2.0\Volo.CmsKit.Pro.Admin.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.cmskit.pro.application.contracts\5.3.2\lib\netstandard2.0\Volo.CmsKit.Pro.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.cmskit.pro.domain.shared\5.3.2\lib\netstandard2.0\Volo.CmsKit.Pro.Domain.Shared.dll /reference:C:\Users\sturlath\.nuget\packages\volo.cmskit.pro.httpapi.client\5.3.2\lib\netstandard2.0\Volo.CmsKit.Pro.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.cmskit.pro.public.application.contracts\5.3.2\lib\netstandard2.0\Volo.CmsKit.Pro.Public.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.cmskit.pro.public.httpapi.client\5.3.2\lib\netstandard2.0\Volo.CmsKit.Pro.Public.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.cmskit.public.application.contracts\5.3.2\lib\netstandard2.0\Volo.CmsKit.Public.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.cmskit.public.httpapi.client\5.3.2\lib\netstandard2.0\Volo.CmsKit.Public.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.docs.admin.application.contracts\5.3.2\lib\netstandard2.0\Volo.Docs.Admin.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.docs.admin.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Docs.Admin.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.docs.application.contracts\5.3.2\lib\netstandard2.0\Volo.Docs.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.docs.domain.shared\5.3.2\lib\netstandard2.0\Volo.Docs.Domain.Shared.dll /reference:C:\Users\sturlath\.nuget\packages\volo.docs.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Docs.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.payment.admin.application.contracts\5.3.2\lib\netstandard2.0\Volo.Payment.Admin.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.payment.admin.blazor\5.3.2\lib\net6.0\Volo.Payment.Admin.Blazor.dll /reference:C:\Users\sturlath\.nuget\packages\volo.payment.admin.blazor.webassembly\5.3.2\lib\net6.0\Volo.Payment.Admin.Blazor.WebAssembly.dll /reference:C:\Users\sturlath\.nuget\packages\volo.payment.admin.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Payment.Admin.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.payment.application.contracts\5.3.2\lib\netstandard2.0\Volo.Payment.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.payment.domain.shared\5.3.2\lib\netstandard2.0\Volo.Payment.Domain.Shared.dll /reference:C:\Users\sturlath\.nuget\packages\volo.payment.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Payment.HttpApi.Client.dll /reference:C:\Users\sturlath\.nuget\packages\volo.saas.domain.shared\5.3.2\lib\netstandard2.0\Volo.Saas.Domain.Shared.dll /reference:C:\Users\sturlath\.nuget\packages\volo.saas.host.application.contracts\5.3.2\lib\netstandard2.0\Volo.Saas.Host.Application.Contracts.dll /reference:C:\Users\sturlath\.nuget\packages\volo.saas.host.blazor\5.3.2\lib\net6.0\Volo.Saas.Host.Blazor.dll /reference:C:\Users\sturlath\.nuget\packages\volo.saas.host.blazor.webassembly\5.3.2\lib\net6.0\Volo.Saas.Host.Blazor.WebAssembly.dll /reference:C:\Users\sturlath\.nuget\packages\volo.saas.host.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Saas.Host.HttpApi.Client.dll /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\ref\net6.0\WindowsBase.dll" /debug- /debug:portable /filealign:512 /optimize+ /out:obj\Release\net6.0\BSR.Beinni.Blazor.dll /refout:obj\Release\net6.0\refint\BSR.Beinni.Blazor.dll /target:exe /warnaserror- /utf8output /deterministic+ /langversion:latest /analyzerconfig:obj\Release\net6.0\BSR.Beinni.Blazor.GeneratedMSBuildEditorConfig.editorconfig /analyzerconfig:"C:\Program Files\dotnet\sdk\6.0.400-preview.22301.10\Sdks\Microsoft.NET.Sdk\analyzers\build\config\analysislevel_6_default.editorconfig" /analyzer:"C:\Program Files\dotnet\sdk\6.0.400-preview.22301.10\Sdks\Microsoft.NET.Sdk\targets\..\analyzers\Microsoft.CodeAnalysis.CSharp.NetAnalyzers.dll" /analyzer:"C:\Program Files\dotnet\sdk\6.0.400-preview.22301.10\Sdks\Microsoft.NET.Sdk\targets\..\analyzers\Microsoft.CodeAnalysis.NetAnalyzers.dll" /analyzer:"C:\Program Files\dotnet\sdk\6.0.400-preview.22301.10\Sdks\Microsoft.NET.Sdk\targets\..\analyzers\ILLink.CodeFixProvider.dll" /analyzer:"C:\Program Files\dotnet\sdk\6.0.400-preview.22301.10\Sdks\Microsoft.NET.Sdk\targets\..\analyzers\ILLink.RoslynAnalyzer.dll" /analyzer:C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.components.analyzers\6.0.5\analyzers\dotnet\cs\Microsoft.AspNetCore.Components.Analyzers.dll /analyzer:C:\Users\sturlath\.nuget\packages\microsoft.extensions.logging.abstractions\6.0.1\analyzers\dotnet\roslyn4.0\cs\Microsoft.Extensions.Logging.Generators.dll /analyzer:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.5\analyzers/dotnet/cs/System.Text.Json.SourceGeneration.dll" /analyzer:"C:\Program Files\dotnet\sdk\6.0.400-preview.22301.10\Sdks\Microsoft.NET.Sdk.Razor\targets\..\\source-generators\Microsoft.AspNetCore.Razor.SourceGenerator.Tooling.Internal.dll" /analyzer:"C:\Program Files\dotnet\sdk\6.0.400-preview.22301.10\Sdks\Microsoft.NET.Sdk.Razor\targets\..\\source-generators\Microsoft.NET.Sdk.Razor.SourceGenerators.dll" /additionalfile:Components\Branding.razor /additionalfile:Components\ChannelListItem.razor /additionalfile:Components\EventSchedule.razor /additionalfile:Components\Financials\AggregatedPurchases.razor /additionalfile:Components\Financials\FinancialDetails.razor /additionalfile:Components\Financials\PurchaceTransactions.razor /additionalfile:Components\Layout\MainFooterComponent.razor /additionalfile:Components\MySettingGroup\PaymentSettingGroupViewComponent.razor /additionalfile:Components\MySettingGroup\ReductionCostGroupViewComponent.razor /additionalfile:Components\MySettingGroup\StreamSettingGroupViewComponent.razor /additionalfile:Components\MySettingGroup\TenantSubscribtionDetailsViewComponent.razor /additionalfile:Components\MySettingGroup\UploadLogoComponent.razor /additionalfile:Components\QuickOverview.razor /additionalfile:Components\RecordingsComponent.razor /additionalfile:Components\StreamEventComponent.razor /additionalfile:Components\YearlyIncomeOverview.razor /additionalfile:Pages\AppPlanManagement.razor /additionalfile:Pages\BoughtEvents\BoughtEvent.razor /additionalfile:Pages\DefaultStreamSettings.razor /additionalfile:Pages\Financials.razor /additionalfile:Pages\Payment\Requests\AppPaymentRequests.razor /additionalfile:Pages\Payment\Requests\AppProducts.razor /additionalfile:Pages\Profile.razor /additionalfile:Pages\Recordings.razor /additionalfile:Pages\StreamEvent.razor /additionalfile:Pages\StreamEvents.razor /additionalfile:Pages\StreamEventViewedByUsers.razor /additionalfile:Pages\TestEventCreation.razor /additionalfile:Pages\Transforms.razor /additionalfile:_Imports.razor /additionalfile:Pages\Index.razor BeinniBlazorAutoMapperProfile.cs BeinniBlazorModule.cs BeinniBrandingProvider.cs BeinniBundleContributor.cs BeinniComponentBase.cs Components\Branding.razor.cs Components\ChannelListItem.razor.cs Components\EventSchedule.razor.cs Components\Financials\AggregatedPurchases.razor.cs Components\Financials\FinancialDetails.razor.cs Components\Financials\PurchaceTransactions.razor.cs Components\QuickOverview.razor.cs Components\RecordingsComponent.razor.cs Components\StreamEventComponent.razor.cs Components\YearlyIncomeOverview.razor.cs Components\YearMonthHelper.cs Interopts\ClipboardService.cs Interopts\IFrameService.cs Navigation\BeinniMenuContributor.cs Navigation\BeinniMenus.cs Pages\AppPlanManagement.razor.cs Pages\DefaultStreamSettings.razor.cs Pages\Index.razor.cs Pages\Payment\Requests\AppPaymentRequests.razor.cs Pages\Payment\Requests\AppProducts.razor.cs Pages\Profile.razor.cs Pages\Recordings.razor.cs Pages\StreamEvent.razor.cs Pages\StreamEvents.razor.cs Pages\StreamEventViewedByUsers.razor.cs Pages\Transforms.razor.cs Program.cs Services\MessageService.cs Settings\StreamEventSettingComponentContributor.cs "obj\Release\net6.0\.NETCoreApp,Version=v6.0.AssemblyAttributes.cs" obj\Release\net6.0\BSR.Beinni.Blazor.AssemblyInfo.cs /warnaserror+:NU1605
C:\Dev\IBeinni\aspnet-core\src\BSR.Beinni.Blazor\Microsoft.NET.Sdk.Razor.SourceGenerators\Microsoft.NET.Sdk.Razor.SourceGenerators.RazorSourceGenerator\Components_StreamEventComponent_razor.g.cs(3208,90): Warning CS0108: 'StreamEventComponent.CurrentTenant' hides inherited member 'AbpComponentBase.CurrentTenant'. Use the new keyword if hiding was intended.
C:\Dev\IBeinni\aspnet-core\src\BSR.Beinni.Blazor\Components\StreamEventComponent.razor.cs(42,30): Warning CS8632: The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.
C:\Dev\IBeinni\aspnet-core\src\BSR.Beinni.Blazor\Microsoft.NET.Sdk.Razor.SourceGenerators\Microsoft.NET.Sdk.Razor.SourceGenerators.RazorSourceGenerator\Components_MySettingGroup_TenantSubscribtionDetailsViewComponent_razor.g.cs(971,90): Warning CS0108: 'TenantSubscribtionDetailsViewComponent.CurrentTenant' hides inherited member 'AbpComponentBase.CurrentTenant'. Use the new keyword if hiding was intended.
C:\Dev\IBeinni\aspnet-core\src\BSR.Beinni.Blazor\Microsoft.NET.Sdk.Razor.SourceGenerators\Microsoft.NET.Sdk.Razor.SourceGenerators.RazorSourceGenerator\Components_MySettingGroup_TenantSubscribtionDetailsViewComponent_razor.g.cs(972,108): Warning CS0108: 'TenantSubscribtionDetailsViewComponent.L' hides inherited member 'AbpComponentBase.L'. Use the new keyword if hiding was intended.
C:\Dev\IBeinni\aspnet-core\src\BSR.Beinni.Blazor\Pages\Transforms.razor.cs(42,30): Warning CS8632: The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.
C:\Dev\IBeinni\aspnet-core\src\BSR.Beinni.Blazor\Pages\Payment\Requests\AppPaymentRequests.razor.cs(25,48): Warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
C:\Dev\IBeinni\aspnet-core\src\BSR.Beinni.Blazor\Components\QuickOverview.razor(70,94): Warning CS4014: Because this call is not awaited, execution of the current method continues before the call is completed. Consider applying the 'await' operator to the result of the call.
C:\Dev\IBeinni\aspnet-core\src\BSR.Beinni.Blazor\Pages\TestEventCreation.razor(863,24): Warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
BSR.Beinni.Blazor -> C:\Dev\IBeinni\aspnet-core\src\BSR.Beinni.Blazor\bin\Release\net6.0\BSR.Beinni.Blazor.dll
BSR.Beinni.Blazor (Blazor output) -> C:\Dev\IBeinni\aspnet-core\src\BSR.Beinni.Blazor\bin\Release\net6.0\wwwroot
C:\Program Files\dotnet\dotnet.exe "C:\Program Files\dotnet\sdk\6.0.400-preview.22301.10\Sdks\Microsoft.NET.ILLink.Tasks\tools\net6.0\illink.dll" -a "obj\Release\net6.0\BSR.Beinni.Blazor.dll"
--singlewarn
-reference "C:\Users\sturlath\.nuget\packages\autofac\6.3.0\lib\net5.0\Autofac.dll"
-reference "C:\Users\sturlath\.nuget\packages\autofac.extensions.dependencyinjection\7.2.0\lib\net6.0\Autofac.Extensions.DependencyInjection.dll"
-reference "C:\Users\sturlath\.nuget\packages\autofac.extras.dynamicproxy\6.0.1\lib\netstandard2.1\Autofac.Extras.DynamicProxy.dll"
-reference "C:\Users\sturlath\.nuget\packages\automapper\11.0.1\lib\netstandard2.1\AutoMapper.dll"
-reference "C:\Users\sturlath\.nuget\packages\blazordownloadfilefast\0.2.0\lib\net6.0\Blazor.DownloadFileFast.dll"
-reference "C:\Users\sturlath\.nuget\packages\blazored.localstorage\4.2.0\lib\net6.0\Blazored.LocalStorage.dll"
-reference "C:\Users\sturlath\.nuget\packages\blazorise\1.0.4\lib\net6.0\Blazorise.dll"
-reference "C:\Users\sturlath\.nuget\packages\blazorise.bootstrap5\1.0.4\lib\net6.0\Blazorise.Bootstrap5.dll"
-reference "C:\Users\sturlath\.nuget\packages\blazorise.charts\1.0.4\lib\net6.0\Blazorise.Charts.dll"
-reference "C:\Users\sturlath\.nuget\packages\blazorise.components\1.0.4\lib\net6.0\Blazorise.Components.dll"
-reference "C:\Users\sturlath\.nuget\packages\blazorise.datagrid\1.0.4\lib\net6.0\Blazorise.DataGrid.dll"
-reference "C:\Users\sturlath\.nuget\packages\blazorise.icons.fontawesome\1.0.4\lib\net6.0\Blazorise.Icons.FontAwesome.dll"
-reference "C:\Users\sturlath\.nuget\packages\blazorise.snackbar\1.0.4\lib\net6.0\Blazorise.Snackbar.dll"
-reference "C:\Users\sturlath\.nuget\packages\blazorise.spinkit\1.0.4\lib\net6.0\Blazorise.SpinKit.dll"
-reference "C:\Users\sturlath\.nuget\packages\blazorise.treeview\1.0.4\lib\net6.0\Blazorise.TreeView.dll"
-reference "C:\Users\sturlath\.nuget\packages\blazorise.video\1.0.4\lib\net6.0\Blazorise.Video.dll"
-reference "C:\Users\sturlath\.nuget\packages\castle.core\5.0.0\lib\net6.0\Castle.Core.dll"
-reference "C:\Users\sturlath\.nuget\packages\castle.core.asyncinterceptor\2.1.0\lib\net6.0\Castle.Core.AsyncInterceptor.dll"
-reference "C:\Users\sturlath\.nuget\packages\identitymodel\5.1.0\lib\net5.0\IdentityModel.dll"
-reference "C:\Users\sturlath\.nuget\packages\jetbrains.annotations\2022.1.0\lib\netstandard2.0\JetBrains.Annotations.dll"
-reference "C:\Users\sturlath\.nuget\packages\lambda2js\3.1.3\lib\netstandard1.0\Lambda2Js.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.authorization\6.0.5\lib\net6.0\Microsoft.AspNetCore.Authorization.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.components\6.0.5\lib\net6.0\Microsoft.AspNetCore.Components.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.components.authorization\6.0.5\lib\net6.0\Microsoft.AspNetCore.Components.Authorization.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.components.forms\6.0.5\lib\net6.0\Microsoft.AspNetCore.Components.Forms.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.components.web\6.0.5\lib\net6.0\Microsoft.AspNetCore.Components.Web.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.components.webassembly\6.0.5\lib\net6.0\Microsoft.AspNetCore.Components.WebAssembly.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.components.webassembly.authentication\6.0.5\lib\net6.0\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.connections.abstractions\6.0.6\lib\net6.0\Microsoft.AspNetCore.Connections.Abstractions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.http.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.Abstractions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.http.connections.client\6.0.6\lib\net6.0\Microsoft.AspNetCore.Http.Connections.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.http.connections.common\6.0.6\lib\net6.0\Microsoft.AspNetCore.Http.Connections.Common.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.http.extensions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.Extensions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.http.features\5.0.17\lib\net5.0\Microsoft.AspNetCore.Http.Features.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.metadata\6.0.5\lib\net6.0\Microsoft.AspNetCore.Metadata.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.responsecompression\2.2.0\lib\netcoreapp2.1\Microsoft.AspNetCore.ResponseCompression.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.signalr.client\6.0.6\lib\net6.0\Microsoft.AspNetCore.SignalR.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.signalr.client.core\6.0.6\lib\net6.0\Microsoft.AspNetCore.SignalR.Client.Core.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.signalr.common\6.0.6\lib\net6.0\Microsoft.AspNetCore.SignalR.Common.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.signalr.protocols.json\6.0.6\lib\net6.0\Microsoft.AspNetCore.SignalR.Protocols.Json.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.aspnetcore.webutilities\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.WebUtilities.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.azure.eventgrid\3.2.1\lib\netstandard2.0\Microsoft.Azure.EventGrid.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.azure.management.media\6.0.0\lib\netstandard2.0\Microsoft.Azure.Management.Media.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.bcl.asyncinterfaces\6.0.0\lib\netstandard2.1\Microsoft.Bcl.AsyncInterfaces.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.caching.abstractions\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Caching.Abstractions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.caching.memory\6.0.1\lib\netstandard2.0\Microsoft.Extensions.Caching.Memory.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.configuration\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.configuration.abstractions\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Abstractions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.configuration.binder\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Binder.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.configuration.commandline\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.CommandLine.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.configuration.environmentvariables\6.0.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.EnvironmentVariables.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.configuration.fileextensions\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.FileExtensions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.configuration.json\6.0.0\lib\netstandard2.1\Microsoft.Extensions.Configuration.Json.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.configuration.usersecrets\6.0.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.dependencyinjection\6.0.0\lib\net6.0\Microsoft.Extensions.DependencyInjection.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.dependencyinjection.abstractions\6.0.0\lib\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.features\6.0.6\lib\net6.0\Microsoft.Extensions.Features.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.fileproviders.abstractions\6.0.0\lib\net6.0\Microsoft.Extensions.FileProviders.Abstractions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.fileproviders.composite\6.0.0\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Composite.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.fileproviders.embedded\6.0.5\lib\net6.0\Microsoft.Extensions.FileProviders.Embedded.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.fileproviders.physical\6.0.0\lib\net6.0\Microsoft.Extensions.FileProviders.Physical.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.filesystemglobbing\6.0.0\lib\net6.0\Microsoft.Extensions.FileSystemGlobbing.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.hosting.abstractions\6.0.0\lib\netstandard2.1\Microsoft.Extensions.Hosting.Abstractions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.http\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Http.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.localization\6.0.5\lib\net6.0\Microsoft.Extensions.Localization.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.localization.abstractions\6.0.5\lib\net6.0\Microsoft.Extensions.Localization.Abstractions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.logging\6.0.0\lib\netstandard2.1\Microsoft.Extensions.Logging.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.logging.abstractions\6.0.1\lib\net6.0\Microsoft.Extensions.Logging.Abstractions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.options\6.0.0\lib\netstandard2.1\Microsoft.Extensions.Options.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.options.configurationextensions\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.extensions.primitives\6.0.0\lib\net6.0\Microsoft.Extensions.Primitives.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.jsinterop\6.0.5\lib\net6.0\Microsoft.JSInterop.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.jsinterop.webassembly\6.0.5\lib\net6.0\Microsoft.JSInterop.WebAssembly.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.net.http.headers\2.2.0\lib\netstandard2.0\Microsoft.Net.Http.Headers.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.rest.clientruntime\2.3.20\lib\netstandard2.0\Microsoft.Rest.ClientRuntime.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.rest.clientruntime.azure\3.3.19\lib\netstandard2.0\Microsoft.Rest.ClientRuntime.Azure.dll"
-reference "C:\Users\sturlath\.nuget\packages\mindscape.raygun4net.netcore\6.4.3\lib\net6.0\Mindscape.Raygun4Net.NetCore.dll"
-reference "C:\Users\sturlath\.nuget\packages\mindscape.raygun4net.netcore.common\6.5.3\lib\net6.0\Mindscape.Raygun4Net.NetCore.Common.dll"
-reference "C:\Users\sturlath\.nuget\packages\newtonsoft.json\13.0.1\lib\netstandard2.0\Newtonsoft.Json.dll"
-reference "C:\Users\sturlath\.nuget\packages\nito.asyncex.context\5.1.2\lib\netstandard2.0\Nito.AsyncEx.Context.dll"
-reference "C:\Users\sturlath\.nuget\packages\nito.asyncex.coordination\5.1.2\lib\netstandard2.0\Nito.AsyncEx.Coordination.dll"
-reference "C:\Users\sturlath\.nuget\packages\nito.asyncex.tasks\5.1.2\lib\netstandard2.0\Nito.AsyncEx.Tasks.dll"
-reference "C:\Users\sturlath\.nuget\packages\nito.collections.deque\1.1.1\lib\netstandard2.0\Nito.Collections.Deque.dll"
-reference "C:\Users\sturlath\.nuget\packages\nito.disposables\2.2.1\lib\netstandard2.1\Nito.Disposables.dll"
-reference "C:\Users\sturlath\.nuget\packages\nuget.versioning\5.11.0\lib\netstandard2.0\NuGet.Versioning.dll"
-reference "C:\Users\sturlath\.nuget\packages\nuglify\1.20.0\lib\net5.0\NUglify.dll"
-reference "C:\Users\sturlath\.nuget\packages\portable.bouncycastle\1.8.5.2\lib\netstandard2.0\BouncyCastle.Crypto.dll"
-reference "C:\Users\sturlath\.nuget\packages\scriban\5.4.4\lib\net6.0\Scriban.dll"
-reference "C:\Users\sturlath\.nuget\packages\syncfusion.blazor.buttons\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Buttons.dll"
-reference "C:\Users\sturlath\.nuget\packages\syncfusion.blazor.calendars\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Calendars.dll"
-reference "C:\Users\sturlath\.nuget\packages\syncfusion.blazor.core\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Core.dll"
-reference "C:\Users\sturlath\.nuget\packages\syncfusion.blazor.data\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Data.dll"
-reference "C:\Users\sturlath\.nuget\packages\syncfusion.blazor.dropdowns\20.1.0.61\lib\net6.0\Syncfusion.Blazor.DropDowns.dll"
-reference "C:\Users\sturlath\.nuget\packages\syncfusion.blazor.filemanager\20.1.0.61\lib\net6.0\Syncfusion.Blazor.FileManager.dll"
-reference "C:\Users\sturlath\.nuget\packages\syncfusion.blazor.grid\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Grids.dll"
-reference "C:\Users\sturlath\.nuget\packages\syncfusion.blazor.inputs\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Inputs.dll"
-reference "C:\Users\sturlath\.nuget\packages\syncfusion.blazor.layouts\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Layouts.dll"
-reference "C:\Users\sturlath\.nuget\packages\syncfusion.blazor.lists\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Lists.dll"
-reference "C:\Users\sturlath\.nuget\packages\syncfusion.blazor.navigations\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Navigations.dll"
-reference "C:\Users\sturlath\.nuget\packages\syncfusion.blazor.popups\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Popups.dll"
-reference "C:\Users\sturlath\.nuget\packages\syncfusion.blazor.spinner\20.1.0.61\lib\net6.0\Syncfusion.Blazor.Spinner.dll"
-reference "C:\Users\sturlath\.nuget\packages\syncfusion.blazor.splitbuttons\20.1.0.61\lib\net6.0\Syncfusion.Blazor.SplitButtons.dll"
-reference "C:\Users\sturlath\.nuget\packages\syncfusion.excelexport.net.core\20.1.0.61\lib\net5.0\Syncfusion.ExcelExport.Net.dll"
-reference "C:\Users\sturlath\.nuget\packages\syncfusion.licensing\20.1.0.61\lib\net6.0\Syncfusion.Licensing.dll"
-reference "C:\Users\sturlath\.nuget\packages\syncfusion.pdfexport.net.core\20.1.0.61\lib\net5.0\Syncfusion.PdfExport.Net.dll"
-reference "C:\Users\sturlath\.nuget\packages\system.codedom\4.7.0\lib\netstandard2.0\System.CodeDom.dll"
-reference "C:\Users\sturlath\.nuget\packages\system.diagnostics.eventlog\6.0.0\lib\net6.0\System.Diagnostics.EventLog.dll"
-reference "C:\Users\sturlath\.nuget\packages\system.io.pipelines\6.0.3\lib\net6.0\System.IO.Pipelines.dll"
-reference "C:\Users\sturlath\.nuget\packages\system.linq.dynamic.core\1.2.18\lib\net6.0\System.Linq.Dynamic.Core.dll"
-reference "C:\Users\sturlath\.nuget\packages\system.management\4.7.0\lib\netstandard2.0\System.Management.dll"
-reference "C:\Users\sturlath\.nuget\packages\timezoneconverter\5.0.0\lib\netstandard2.0\TimeZoneConverter.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.account.pro.admin.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.Account.Pro.Admin.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.account.pro.admin.blazor\5.3.2\lib\net6.0\Volo.Abp.Account.Pro.Admin.Blazor.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.account.pro.admin.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.Account.Pro.Admin.Blazor.WebAssembly.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.account.pro.admin.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.Account.Pro.Admin.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.account.pro.public.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.Account.Pro.Public.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.account.pro.public.blazor\5.3.2\lib\net6.0\Volo.Abp.Account.Pro.Public.Blazor.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.account.pro.public.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.Account.Pro.Public.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.account.pro.shared.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.Account.Pro.Shared.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.aspnetcore.components\5.3.2\lib\net6.0\Volo.Abp.AspNetCore.Components.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.aspnetcore.components.web\5.3.2\lib\net6.0\Volo.Abp.AspNetCore.Components.Web.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.aspnetcore.components.web.leptontheme\5.3.2\lib\net6.0\Volo.Abp.AspNetCore.Components.Web.LeptonTheme.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.aspnetcore.components.web.theming\5.3.2\lib\net6.0\Volo.Abp.AspNetCore.Components.Web.Theming.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.aspnetcore.components.webassembly\5.3.2\lib\net6.0\Volo.Abp.AspNetCore.Components.WebAssembly.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.aspnetcore.components.webassembly.leptontheme\5.3.2\lib\net6.0\Volo.Abp.AspNetCore.Components.WebAssembly.LeptonTheme.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.aspnetcore.components.webassembly.theming\5.3.2\lib\net6.0\Volo.Abp.AspNetCore.Components.WebAssembly.Theming.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.aspnetcore.mvc.client.common\5.3.2\lib\netstandard2.0\Volo.Abp.AspNetCore.Mvc.Client.Common.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.aspnetcore.mvc.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.AspNetCore.Mvc.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.auditing\5.3.2\lib\netstandard2.0\Volo.Abp.Auditing.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.auditing.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.Auditing.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.auditlogging.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.AuditLogging.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.auditlogging.blazor\5.3.2\lib\net6.0\Volo.Abp.AuditLogging.Blazor.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.auditlogging.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.AuditLogging.Blazor.WebAssembly.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.auditlogging.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.AuditLogging.Domain.Shared.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.auditlogging.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.AuditLogging.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.authorization\5.3.2\lib\netstandard2.0\Volo.Abp.Authorization.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.authorization.abstractions\5.3.2\lib\netstandard2.0\Volo.Abp.Authorization.Abstractions.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.autofac\5.3.2\lib\netstandard2.0\Volo.Abp.Autofac.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.autofac.webassembly\5.3.2\lib\net6.0\Volo.Abp.Autofac.WebAssembly.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.automapper\5.3.2\lib\netstandard2.1\Volo.Abp.AutoMapper.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.backgroundjobs.abstractions\5.3.2\lib\netstandard2.0\Volo.Abp.BackgroundJobs.Abstractions.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.backgroundjobs.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.BackgroundJobs.Domain.Shared.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.backgroundworkers\5.3.2\lib\netstandard2.0\Volo.Abp.BackgroundWorkers.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.blazoriseui\5.3.2\lib\net6.0\Volo.Abp.BlazoriseUI.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.blobstoring.database.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.BlobStoring.Database.Domain.Shared.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.caching\5.3.2\lib\netstandard2.0\Volo.Abp.Caching.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.castle.core\5.3.2\lib\netstandard2.0\Volo.Abp.Castle.Core.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.commercial.core\5.3.2\lib\netstandard2.0\Volo.Abp.Commercial.Core.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.commercial.suitetemplates\5.3.2\lib\netstandard2.0\Volo.Abp.Commercial.SuiteTemplates.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.core\5.3.2\lib\netstandard2.0\Volo.Abp.Core.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.data\5.3.2\lib\netstandard2.0\Volo.Abp.Data.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.ddd.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.Ddd.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.ddd.domain\5.3.2\lib\netstandard2.0\Volo.Abp.Ddd.Domain.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.distributedlocking.abstractions\5.3.2\lib\netstandard2.0\Volo.Abp.DistributedLocking.Abstractions.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.emailing\5.3.2\lib\netstandard2.0\Volo.Abp.Emailing.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.eventbus\5.3.2\lib\netstandard2.0\Volo.Abp.EventBus.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.eventbus.abstractions\5.3.2\lib\netstandard2.0\Volo.Abp.EventBus.Abstractions.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.exceptionhandling\5.3.2\lib\netstandard2.0\Volo.Abp.ExceptionHandling.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.featuremanagement.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.FeatureManagement.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.featuremanagement.blazor\5.3.2\lib\net6.0\Volo.Abp.FeatureManagement.Blazor.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.featuremanagement.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.FeatureManagement.Blazor.WebAssembly.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.featuremanagement.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.FeatureManagement.Domain.Shared.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.featuremanagement.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.FeatureManagement.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.features\5.3.2\lib\netstandard2.0\Volo.Abp.Features.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.globalfeatures\5.3.2\lib\netstandard2.0\Volo.Abp.GlobalFeatures.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.guids\5.3.2\lib\netstandard2.0\Volo.Abp.Guids.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.http\5.3.2\lib\netstandard2.0\Volo.Abp.Http.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.http.abstractions\5.3.2\lib\netstandard2.0\Volo.Abp.Http.Abstractions.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.http.client\5.3.2\lib\netstandard2.0\Volo.Abp.Http.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.http.client.identitymodel\5.3.2\lib\netstandard2.0\Volo.Abp.Http.Client.IdentityModel.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.http.client.identitymodel.webassembly\5.3.2\lib\net6.0\Volo.Abp.Http.Client.IdentityModel.WebAssembly.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.identity.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.Identity.Domain.Shared.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.identity.pro.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.Identity.Pro.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.identity.pro.blazor\5.3.2\lib\net6.0\Volo.Abp.Identity.Pro.Blazor.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.identity.pro.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.Identity.Pro.Blazor.WebAssembly.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.identity.pro.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.Identity.Pro.Domain.Shared.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.identity.pro.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.Identity.Pro.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.identitymodel\5.3.2\lib\netstandard2.0\Volo.Abp.IdentityModel.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.identityserver.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.IdentityServer.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.identityserver.blazor\5.3.2\lib\net6.0\Volo.Abp.IdentityServer.Blazor.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.identityserver.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.IdentityServer.Blazor.WebAssembly.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.identityserver.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.IdentityServer.Domain.Shared.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.identityserver.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.IdentityServer.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.json\5.3.2\lib\netstandard2.0\Volo.Abp.Json.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.languagemanagement.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.LanguageManagement.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.languagemanagement.blazor\5.3.2\lib\net6.0\Volo.Abp.LanguageManagement.Blazor.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.languagemanagement.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.LanguageManagement.Blazor.WebAssembly.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.languagemanagement.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.LanguageManagement.Domain.Shared.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.languagemanagement.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.LanguageManagement.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.leptontheme.management.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.LeptonTheme.Management.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.leptontheme.management.blazor\5.3.2\lib\net6.0\Volo.Abp.LeptonTheme.Management.Blazor.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.leptontheme.management.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.LeptonTheme.Management.Blazor.WebAssembly.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.leptontheme.management.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.LeptonTheme.Management.Domain.Shared.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.leptontheme.management.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.LeptonTheme.Management.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.localization\5.3.2\lib\netstandard2.0\Volo.Abp.Localization.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.localization.abstractions\5.3.2\lib\netstandard2.0\Volo.Abp.Localization.Abstractions.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.minify\5.3.2\lib\netstandard2.0\Volo.Abp.Minify.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.multitenancy\5.3.2\lib\netstandard2.0\Volo.Abp.MultiTenancy.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.objectextending\5.3.2\lib\netstandard2.0\Volo.Abp.ObjectExtending.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.objectmapping\5.3.2\lib\netstandard2.0\Volo.Abp.ObjectMapping.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.permissionmanagement.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.PermissionManagement.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.permissionmanagement.blazor\5.3.2\lib\net6.0\Volo.Abp.PermissionManagement.Blazor.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.permissionmanagement.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.PermissionManagement.Blazor.WebAssembly.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.permissionmanagement.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.PermissionManagement.Domain.Shared.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.permissionmanagement.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.PermissionManagement.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.security\5.3.2\lib\netstandard2.0\Volo.Abp.Security.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.serialization\5.3.2\lib\netstandard2.0\Volo.Abp.Serialization.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.settingmanagement.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.SettingManagement.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.settingmanagement.blazor\5.3.2\lib\net6.0\Volo.Abp.SettingManagement.Blazor.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.settingmanagement.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.SettingManagement.Blazor.WebAssembly.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.settingmanagement.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.SettingManagement.Domain.Shared.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.settingmanagement.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.SettingManagement.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.settings\5.3.2\lib\netstandard2.0\Volo.Abp.Settings.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.specifications\5.3.2\lib\netstandard2.0\Volo.Abp.Specifications.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.texttemplatemanagement.application.contracts\5.3.2\lib\netstandard2.0\Volo.Abp.TextTemplateManagement.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.texttemplatemanagement.blazor\5.3.2\lib\net6.0\Volo.Abp.TextTemplateManagement.Blazor.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.texttemplatemanagement.blazor.webassembly\5.3.2\lib\net6.0\Volo.Abp.TextTemplateManagement.Blazor.WebAssembly.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.texttemplatemanagement.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.TextTemplateManagement.Domain.Shared.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.texttemplatemanagement.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Abp.TextTemplateManagement.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.texttemplating\5.3.2\lib\netstandard2.0\Volo.Abp.TextTemplating.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.texttemplating.core\5.3.2\lib\netstandard2.0\Volo.Abp.TextTemplating.Core.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.texttemplating.scriban\5.3.2\lib\netstandard2.0\Volo.Abp.TextTemplating.Scriban.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.threading\5.3.2\lib\netstandard2.0\Volo.Abp.Threading.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.timing\5.3.2\lib\netstandard2.0\Volo.Abp.Timing.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.ui\5.3.2\lib\netstandard2.0\Volo.Abp.UI.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.ui.navigation\5.3.2\lib\netstandard2.0\Volo.Abp.UI.Navigation.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.uow\5.3.2\lib\netstandard2.0\Volo.Abp.Uow.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.users.abstractions\5.3.2\lib\netstandard2.0\Volo.Abp.Users.Abstractions.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.users.domain.shared\5.3.2\lib\netstandard2.0\Volo.Abp.Users.Domain.Shared.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.validation\5.3.2\lib\netstandard2.0\Volo.Abp.Validation.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.validation.abstractions\5.3.2\lib\netstandard2.0\Volo.Abp.Validation.Abstractions.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.abp.virtualfilesystem\5.3.2\lib\netstandard2.0\Volo.Abp.VirtualFileSystem.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.cmskit.admin.application.contracts\5.3.2\lib\netstandard2.0\Volo.CmsKit.Admin.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.cmskit.admin.httpapi.client\5.3.2\lib\netstandard2.0\Volo.CmsKit.Admin.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.cmskit.application.contracts\5.3.2\lib\netstandard2.0\Volo.CmsKit.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.cmskit.common.application.contracts\5.3.2\lib\netstandard2.0\Volo.CmsKit.Common.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.cmskit.common.httpapi.client\5.3.2\lib\netstandard2.0\Volo.CmsKit.Common.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.cmskit.domain.shared\5.3.2\lib\netstandard2.0\Volo.CmsKit.Domain.Shared.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.cmskit.httpapi.client\5.3.2\lib\netstandard2.0\Volo.CmsKit.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.cmskit.pro.admin.application.contracts\5.3.2\lib\netstandard2.0\Volo.CmsKit.Pro.Admin.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.cmskit.pro.admin.httpapi.client\5.3.2\lib\netstandard2.0\Volo.CmsKit.Pro.Admin.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.cmskit.pro.application.contracts\5.3.2\lib\netstandard2.0\Volo.CmsKit.Pro.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.cmskit.pro.domain.shared\5.3.2\lib\netstandard2.0\Volo.CmsKit.Pro.Domain.Shared.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.cmskit.pro.httpapi.client\5.3.2\lib\netstandard2.0\Volo.CmsKit.Pro.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.cmskit.pro.public.application.contracts\5.3.2\lib\netstandard2.0\Volo.CmsKit.Pro.Public.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.cmskit.pro.public.httpapi.client\5.3.2\lib\netstandard2.0\Volo.CmsKit.Pro.Public.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.cmskit.public.application.contracts\5.3.2\lib\netstandard2.0\Volo.CmsKit.Public.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.cmskit.public.httpapi.client\5.3.2\lib\netstandard2.0\Volo.CmsKit.Public.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.docs.admin.application.contracts\5.3.2\lib\netstandard2.0\Volo.Docs.Admin.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.docs.admin.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Docs.Admin.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.docs.application.contracts\5.3.2\lib\netstandard2.0\Volo.Docs.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.docs.domain.shared\5.3.2\lib\netstandard2.0\Volo.Docs.Domain.Shared.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.docs.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Docs.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.payment.admin.application.contracts\5.3.2\lib\netstandard2.0\Volo.Payment.Admin.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.payment.admin.blazor\5.3.2\lib\net6.0\Volo.Payment.Admin.Blazor.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.payment.admin.blazor.webassembly\5.3.2\lib\net6.0\Volo.Payment.Admin.Blazor.WebAssembly.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.payment.admin.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Payment.Admin.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.payment.application.contracts\5.3.2\lib\netstandard2.0\Volo.Payment.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.payment.domain.shared\5.3.2\lib\netstandard2.0\Volo.Payment.Domain.Shared.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.payment.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Payment.HttpApi.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.saas.domain.shared\5.3.2\lib\netstandard2.0\Volo.Saas.Domain.Shared.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.saas.host.application.contracts\5.3.2\lib\netstandard2.0\Volo.Saas.Host.Application.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.saas.host.blazor\5.3.2\lib\net6.0\Volo.Saas.Host.Blazor.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.saas.host.blazor.webassembly\5.3.2\lib\net6.0\Volo.Saas.Host.Blazor.WebAssembly.dll"
-reference "C:\Users\sturlath\.nuget\packages\volo.saas.host.httpapi.client\5.3.2\lib\netstandard2.0\Volo.Saas.Host.HttpApi.Client.dll"
-reference "C:\Dev\IBeinni\aspnet-core\src\BSR.Beinni.Application.Contracts\bin\Release\netstandard2.0\BSR.Beinni.Application.Contracts.dll"
--singlewarn- "BSR.Beinni.Application.Contracts"
-reference "C:\Dev\IBeinni\aspnet-core\src\BSR.Beinni.Domain.Shared\bin\Release\netstandard2.0\BSR.Beinni.Domain.Shared.dll"
--singlewarn- "BSR.Beinni.Domain.Shared"
-reference "C:\Dev\IBeinni\aspnet-core\src\BSR.Beinni.HttpApi.Client\bin\Release\netstandard2.0\BSR.Beinni.HttpApi.Client.dll"
--singlewarn- "BSR.Beinni.HttpApi.Client"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\Microsoft.CSharp.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\Microsoft.VisualBasic.Core.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\Microsoft.VisualBasic.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\Microsoft.Win32.Primitives.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\Microsoft.Win32.Registry.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.AppContext.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Buffers.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Collections.Concurrent.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Collections.Immutable.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Collections.NonGeneric.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Collections.Specialized.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Collections.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.ComponentModel.Annotations.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.ComponentModel.DataAnnotations.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.ComponentModel.EventBasedAsync.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.ComponentModel.Primitives.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.ComponentModel.TypeConverter.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.ComponentModel.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Configuration.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Console.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Core.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Data.Common.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Data.DataSetExtensions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Data.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Diagnostics.Contracts.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Diagnostics.Debug.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Diagnostics.DiagnosticSource.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Diagnostics.FileVersionInfo.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Diagnostics.Process.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Diagnostics.StackTrace.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Diagnostics.TextWriterTraceListener.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Diagnostics.Tools.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Diagnostics.TraceSource.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Diagnostics.Tracing.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Drawing.Primitives.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Drawing.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Dynamic.Runtime.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Formats.Asn1.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Globalization.Calendars.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Globalization.Extensions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Globalization.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.IO.Compression.Brotli.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.IO.Compression.FileSystem.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.IO.Compression.ZipFile.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.IO.Compression.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.IO.FileSystem.AccessControl.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.IO.FileSystem.DriveInfo.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.IO.FileSystem.Primitives.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.IO.FileSystem.Watcher.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.IO.FileSystem.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.IO.IsolatedStorage.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.IO.MemoryMappedFiles.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.IO.Pipes.AccessControl.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.IO.Pipes.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.IO.UnmanagedMemoryStream.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.IO.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Linq.Expressions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Linq.Parallel.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Linq.Queryable.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Linq.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Memory.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Net.Http.Json.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Net.Http.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Net.HttpListener.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Net.Mail.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Net.NameResolution.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Net.NetworkInformation.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Net.Ping.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Net.Primitives.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Net.Quic.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Net.Requests.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Net.Security.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Net.ServicePoint.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Net.Sockets.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Net.WebClient.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Net.WebHeaderCollection.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Net.WebProxy.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Net.WebSockets.Client.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Net.WebSockets.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Net.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Numerics.Vectors.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Numerics.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.ObjectModel.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Private.DataContractSerialization.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Private.Runtime.InteropServices.JavaScript.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Private.Uri.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Private.Xml.Linq.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Private.Xml.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Reflection.DispatchProxy.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Reflection.Emit.ILGeneration.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Reflection.Emit.Lightweight.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Reflection.Emit.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Reflection.Extensions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Reflection.Metadata.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Reflection.Primitives.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Reflection.TypeExtensions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Reflection.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Resources.Reader.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Resources.ResourceManager.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Resources.Writer.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Runtime.CompilerServices.Unsafe.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Runtime.CompilerServices.VisualC.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Runtime.Extensions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Runtime.Handles.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Runtime.InteropServices.RuntimeInformation.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Runtime.InteropServices.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Runtime.Intrinsics.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Runtime.Loader.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Runtime.Numerics.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Runtime.Serialization.Formatters.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Runtime.Serialization.Json.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Runtime.Serialization.Primitives.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Runtime.Serialization.Xml.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Runtime.Serialization.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Runtime.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Security.AccessControl.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Security.Claims.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Security.Cryptography.Algorithms.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Security.Cryptography.Cng.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Security.Cryptography.Csp.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Security.Cryptography.Encoding.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Security.Cryptography.OpenSsl.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Security.Cryptography.Primitives.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Security.Cryptography.X509Certificates.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Security.Principal.Windows.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Security.Principal.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Security.SecureString.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Security.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.ServiceModel.Web.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.ServiceProcess.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Text.Encoding.CodePages.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Text.Encoding.Extensions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Text.Encoding.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Text.Encodings.Web.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Text.Json.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Text.RegularExpressions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Threading.Channels.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Threading.Overlapped.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Threading.Tasks.Dataflow.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Threading.Tasks.Extensions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Threading.Tasks.Parallel.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Threading.Tasks.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Threading.Thread.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Threading.ThreadPool.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Threading.Timer.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Threading.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Transactions.Local.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Transactions.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.ValueTuple.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Web.HttpUtility.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Web.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Windows.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Xml.Linq.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Xml.ReaderWriter.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Xml.Serialization.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Xml.XDocument.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Xml.XPath.XDocument.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Xml.XPath.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Xml.XmlDocument.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Xml.XmlSerializer.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.Xml.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\System.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\WindowsBase.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\mscorlib.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\lib\net6.0\netstandard.dll"
-reference "C:\Users\sturlath\.nuget\packages\microsoft.netcore.app.runtime.mono.browser-wasm\6.0.5\runtimes\browser-wasm\native\System.Private.CoreLib.dll"
-reference "obj\Release\net6.0\BSR.Beinni.Blazor.dll"
--singlewarn- "BSR.Beinni.Blazor"
-out "obj\Release\net6.0\linked"
--nowarn "1701;1702;CS1591;IL2026;IL2041;IL2042;IL2043;IL2056;IL2045;IL2046;IL2050;IL2032;IL2055;IL2057;IL2058;IL2059;IL2060;IL2061;IL2096;IL2062;IL2063;IL2064;IL2065;IL2066;IL2067;IL2068;IL2069;IL2070;IL2071;IL2072;IL2073;IL2074;IL2075;IL2076;IL2077;IL2078;IL2079;IL2080;IL2081;IL2082;IL2083;IL2084;IL2085;IL2086;IL2087;IL2088;IL2089;IL2090;IL2091;IL2092;IL2093;IL2094;IL2095;IL2097;IL2098;IL2099;IL2106;IL2103;IL2107;IL2109;IL2110;IL2111;IL2114;IL2115;IL2112;IL2113;1701;1702;2008"
--warn "5"
--warnaserror- --warnaserror ";NU1605"
--feature Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability true
--feature System.AggressiveAttributeTrimming true
--feature System.ComponentModel.TypeConverter.EnableUnsafeBinaryFormatterInDesigntimeLicenseContextSerialization false
--feature System.Diagnostics.Debugger.IsSupported false
--feature System.Diagnostics.Tracing.EventSource.IsSupported false
--feature System.Globalization.Invariant false
--feature System.Net.Http.EnableActivityPropagation false
--feature System.Reflection.Metadata.MetadataUpdater.IsSupported false
--feature System.Reflection.NullabilityInfoContext.IsSupported false
--feature System.Resources.ResourceManager.AllowCustomResourceTypes false
--feature System.Resources.UseSystemResourceKeys true
--feature System.Runtime.InteropServices.BuiltInComInterop.IsSupported false
--feature System.Runtime.InteropServices.EnableConsumingManagedCodeFromNativeHosting false
--feature System.Runtime.InteropServices.EnableCppCLIHostActivation false
--feature System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization false
--feature System.StartupHookProvider.IsSupported false
--feature System.Threading.Thread.EnableAutoreleasePool false
--feature System.Text.Encoding.EnableUnsafeUTF7Encoding false
-b
--trim-mode link
--action copy
--skip-unresolved true 

ILLink(0,0): Error IL1012: IL Trimmer has encountered an unexpected error. Please report the issue at https://github.com/dotnet/linker/issues
Fatal error in IL Linker
Unhandled exception. System.NullReferenceException: Object reference not set to an instance of an object.
   at Mono.Linker.TypeReferenceWalker.WalkMethodReference(MethodReference mr)
   at Mono.Linker.TypeReferenceWalker.WalkTypeScope(MethodBody body)
   at Mono.Linker.TypeReferenceWalker.WalkScopes(TypeDefinition typeDefinition)
   at Mono.Linker.TypeReferenceWalker.Process()
   at Mono.Linker.Steps.MarkStep.MarkEntireAssembly(AssemblyDefinition assembly)
   at Mono.Linker.Steps.MarkStep.MarkAssembly(AssemblyDefinition assembly, DependencyInfo reason)
   at Mono.Linker.Steps.MarkStep.MarkModule(ModuleDefinition module, DependencyInfo reason)
   at Mono.Linker.Steps.MarkStep.MarkType(TypeReference reference, DependencyInfo reason, Nullable`1 origin)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArgument(CustomAttributeArgument argument, ICustomAttribute ca)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArgument(CustomAttributeArgument argument, ICustomAttribute ca)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArguments(CustomAttribute ca)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttribute(CustomAttribute ca, DependencyInfo& reason)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttributes(ICustomAttributeProvider provider, DependencyInfo& reason)
   at Mono.Linker.Steps.MarkStep.MarkEntireType(TypeDefinition type, DependencyInfo& reason)
   at Mono.Linker.Steps.MarkStep.MarkEntireAssembly(AssemblyDefinition assembly)
   at Mono.Linker.Steps.MarkStep.MarkAssembly(AssemblyDefinition assembly, DependencyInfo reason)
   at Mono.Linker.Steps.MarkStep.MarkModule(ModuleDefinition module, DependencyInfo reason)
   at Mono.Linker.Steps.MarkStep.MarkType(TypeReference reference, DependencyInfo reason, Nullable`1 origin)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArgument(CustomAttributeArgument argument, ICustomAttribute ca)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArgument(CustomAttributeArgument argument, ICustomAttribute ca)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArguments(CustomAttribute ca)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttribute(CustomAttribute ca, DependencyInfo& reason)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttributes(ICustomAttributeProvider provider, DependencyInfo& reason)
   at Mono.Linker.Steps.MarkStep.MarkEntireType(TypeDefinition type, DependencyInfo& reason)
   at Mono.Linker.Steps.MarkStep.MarkEntireAssembly(AssemblyDefinition assembly)
   at Mono.Linker.Steps.MarkStep.MarkAssembly(AssemblyDefinition assembly, DependencyInfo reason)
   at Mono.Linker.Steps.MarkStep.MarkModule(ModuleDefinition module, DependencyInfo reason)
   at Mono.Linker.Steps.MarkStep.MarkType(TypeReference reference, DependencyInfo reason, Nullable`1 origin)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArgument(CustomAttributeArgument argument, ICustomAttribute ca)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArgument(CustomAttributeArgument argument, ICustomAttribute ca)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArguments(CustomAttribute ca)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttribute(CustomAttribute ca, DependencyInfo& reason)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttributes(ICustomAttributeProvider provider, DependencyInfo& reason)
   at Mono.Linker.Steps.MarkStep.MarkEntireType(TypeDefinition type, DependencyInfo& reason)
   at Mono.Linker.Steps.MarkStep.MarkEntireAssembly(AssemblyDefinition assembly)
   at Mono.Linker.Steps.MarkStep.MarkAssembly(AssemblyDefinition assembly, DependencyInfo reason)
   at Mono.Linker.Steps.MarkStep.MarkModule(ModuleDefinition module, DependencyInfo reason)
   at Mono.Linker.Steps.MarkStep.MarkType(TypeReference reference, DependencyInfo reason, Nullable`1 origin)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArgument(CustomAttributeArgument argument, ICustomAttribute ca)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArgument(CustomAttributeArgument argument, ICustomAttribute ca)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttributeArguments(CustomAttribute ca)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttribute(CustomAttribute ca, DependencyInfo& reason)
   at Mono.Linker.Steps.MarkStep.MarkCustomAttributes(ICustomAttributeProvider provider, DependencyInfo& reason)
   at Mono.Linker.Steps.MarkStep.MarkType(TypeReference reference, DependencyInfo reason, Nullable`1 origin)
   at Mono.Linker.Steps.MarkStep.MarkType(TypeReference reference, DependencyInfo reason, Nullable`1 origin)
   at Mono.Linker.Steps.MarkStep.MarkField(FieldDefinition field, DependencyInfo& reason)
   at Mono.Linker.Steps.MarkStep.MarkEntireType(TypeDefinition type, DependencyInfo& reason)
   at Mono.Linker.Steps.MarkStep.MarkEntireType(TypeDefinition type, DependencyInfo& reason)
   at Mono.Linker.Steps.MarkStep.MarkEntireAssembly(AssemblyDefinition assembly)
   at Mono.Linker.Steps.MarkStep.MarkAssembly(AssemblyDefinition assembly, DependencyInfo reason)
   at Mono.Linker.Steps.MarkStep.ProcessMarkedPending()
   at Mono.Linker.Steps.MarkStep.Initialize()
   at Mono.Linker.Steps.MarkStep.Process(LinkContext context)
   at Mono.Linker.Pipeline.ProcessStep(LinkContext context, IStep step)
   at Mono.Linker.Pipeline.Process(LinkContext context)
   at Mono.Linker.Driver.Run(ILogger customLogger)
   at Mono.Linker.Driver.Main(String[] args)
Optimizing assemblies for size, which may change the behavior of the app. Be sure to test after publishing. See: https://aka.ms/dotnet-illink
C:\Program Files\dotnet\sdk\6.0.400-preview.22301.10\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.ILLink.targets(109,5): Error NETSDK1144: Optimizing assemblies for size failed. Optimization can be disabled by setting the PublishTrimmed property to false.

3>Build failed. Check the Output window for more details.
========== Build: 2 succeeded, 0 failed, 2 up-to-date, 0 skipped ==========
========== Publish: 0 succeeded, 1 failed, 0 skipped ==========
sturlath commented 2 years ago

After finding out that I could add the following line

<SuppressTrimAnalysisWarnings>false</SuppressTrimAnalysisWarnings>

I got some more information (why isn´t this printed out when you are publishing?)

C:\dev\IBeinni\aspnet-core\src\BSR.Beinni.Blazor\BeinniBlazorModule.cs(108,17): warning IL2026: Using member 'Microsoft.Extensions.Configuration.ConfigurationBinde
r.Bind(Microsoft.Extensions.Configuration.IConfiguration, string, object)' which has 'RequiresUnreferencedCodeAttribute' can break functionality when trimming appl
ication code. Cannot statically analyze the type of instance so its members may be trimmed. [C:\dev\IBeinni\aspnet-core\src\BSR.Beinni.Blazor\BSR.Beinni.Blazor.csp
roj]
C:\Users\sturlath\.nuget\packages\autofac\6.3.0\lib\net5.0\Autofac.dll : warning IL2104: Assembly 'Autofac' produced trim warnings. For more information see https:
//aka.ms/dotnet-illink/libraries [C:\dev\IBeinni\aspnet-core\src\BSR.Beinni.Blazor\BSR.Beinni.Blazor.csproj]
C:\Users\sturlath\.nuget\packages\castle.core\5.0.0\lib\net6.0\Castle.Core.dll : warning IL2104: Assembly 'Castle.Core' produced trim warnings. For more informatio
n see https://aka.ms/dotnet-illink/libraries [C:\dev\IBeinni\aspnet-core\src\BSR.Beinni.Blazor\BSR.Beinni.Blazor.csproj]

Are these the reason I can´t apply trimming or something else?

sturlath commented 2 years ago

I just ran dotnet publish --configuration Release -v diag and didn´t get much extra on this and I also tried VS Version 17.2.3 with the same result.

I installed the Project System Tools and recorded the build log (because it was to large for my terminal to record) and then tried to view them with the structured-log-viewer but that blew up also 🤦‍♂️ image

So here are the binlogs if they can help you help me 😅 binlogs.zip

marek-safar commented 2 years ago

The crash is a bug in the linker (IIRC @sbomer rewrote it). I guess in your case https://github.com/dotnet/linker/blob/release/6.0.x/src/linker/Linker/TypeReferenceWalker.cs#L212 is null.

marek-safar commented 2 years ago

/cc @vitek-karas

sbomer commented 2 years ago

@sturlath thanks for reporting. I have tried publishing a project with a csproj similar to the one you shared but haven't been able to recreate the crash. If you could share some kind of repro that would be very helpful.

Are these the reason I can´t apply trimming or something else?

Those warnings are an indication that the trimmer can't statically reason about the code used by your app, and they could represent real issues. (https://docs.microsoft.com/en-us/dotnet/core/deploying/trimming/fixing-warning has more info about the warnings in general). However these look unrelated to the crash, which is definitely a bug.

(why isn´t this printed out when you are publishing?)

The Blazor SDK isn't fully trim-compatible - they only trim explicitly opted-in assemblies. They disable warnings by default to avoid noise since some of the potential issues are mitigated by partial trimming, but this is no guarantee that there aren't real issues.

sturlath commented 2 years ago

@sbomer it took me time but I got you a trimmed (removed basically everything while still getting the error) down version of my code https://www.dropbox.com/s/9cng52ywp0jujkf/MicrosoftLinkerErrorInBlazor.zip?dl=0

It has all the dll´s just in case you had some nuget issues. Let me know when you have used and I´ll remove the share from dropbox (saving size)

Hope this helps

sbomer commented 2 years ago

@sturlath I really appreciate you taking the time, this helps a lot! This reproduces the issue for me.

sbomer commented 2 years ago

The linker is crashing on what looks like an invalid call instruction - the operand is null when we get here: https://github.com/dotnet/linker/blob/60f48c55b5e0183bd1cee4cfa14f1d9ad3d90935/src/linker/Linker/TypeReferenceWalker.cs#L173

image

This assembly looks like it has been obfuscated - maybe the obfuscation process created invalid IL.

marek-safar commented 2 years ago

This is for sure obfuscated assembly. Trimming obfuscated assembly does not make sense, it would be great if you could issue a warning though.

sbomer commented 2 years ago

We could check for null in this particular case, but I doubt we will be able to make the linker end-to-end resilient to this without a lot of effort. Do you think a best-effort approach makes sense here (so just add a null check in this one place for now)?

If there were some more reliable way to detect obfuscated assemblies I would be more inclined to do it, but I don't see any obvious indication like an assembly-level attribute in this example.

sbomer commented 2 years ago

@vitek-karas noticed that the assembly has SuppressILDasmAttribute, so we could warn if we encounter an assembly with that. @MichalStrehovsky do you have any recommendations based on your experience with .NET Native?

MichalStrehovsky commented 2 years ago

@vitek-karas noticed that the assembly has SuppressILDasmAttribute, so we could warn if we encounter an assembly with that. @MichalStrehovsky do you have any recommendations based on your experience with .NET Native?

Our position in .NET Native was that if the obfuscator doesn't produce outputs that could be legitimately produced by obfuscating the source code and then compiling that with a real compiler, it's unsupported.

One thing is that obfuscators generate IL like this (where they put unreachable garbage in-between instructions). The other thing is they also produce malformed metadata in spots the runtime won't look at. It's hard to support that because it often exploits corner cases of the runtime implementation. David Wrighton could talk about all the corner cases of virtual resolution obfuscators tend to exploit. IL Linker can't even get the virtual resolution right for the cases that the C# compiler can generate. I have a hard time seeing obfuscators in general as something that can be supported with trimming.

vitek-karas commented 2 years ago

Sorry for not making the question clearer. I don't think anybody here is proposing to support obfuscated assemblies. What we're thinking about is detecting at least the most common obfuscators and reporting a warning. Basically trying to avoid repeating the work to debug a random failure in the linker, just to realize it's because of an obfuscated assembly.

I vaguely remember that .NET Native had some code to detect the common obfuscators as well, so I was curious if you remember what it did.

MichalStrehovsky commented 2 years ago

I vaguely remember that .NET Native had some code to detect the common obfuscators as well, so I was curious if you remember what it did.

It looks at assembly-level custom attributes, looking for anything that contains DotfuscatorAttribute or SmartAssembly.Attributes.PoweredByAttribute.

MichalStrehovsky commented 2 years ago

(And it was a hard error, not a warning. Our experience was that people would do a support call, ignoring all warnings they got, and not mentioning the warning until we started investigating.)

sturlath commented 2 years ago

But I´m guess you will allow the rest of the code to be trimmed (add a null check and proceed)? This obfuscated dll is a bought one that I personally did not obfuscate and have no control over.

vitek-karas commented 2 years ago

Historically we've been avoiding trying to do anything with obfuscated assemblies - for example, we can't rely on the ability to read/write it without breaking it since it exploits runtimes ability to handle otherwise very invalid IL/metadata in some cases.

There's also no real guarantee the assembly will actually work at runtime - especially in Blazor. The Blazor's client runtime is basically Mono, not CoreCLR. If the obfuscator makes use of things which work in CoreCLR, those same things may not work on Mono. All of this is exaggerated by presence of AOT compilers - for example Blazor now offers AOT compilation, which is effectively another implementation of the CLI reading spec, which may or may not understand the weird things obfuscator did.

I would definitely suggest to mark these assemblies as "copy": https://docs.microsoft.com/en-us/dotnet/core/deploying/trimming/trimming-options#trimmed-assemblies and add TrimMode=copy to them. Basically the same thing we do for C++/CLI assemblies (which we also can't read/write without issues). I still can't guarantee that it will work though nor that we will support it if it does going forward.

The general problem is that obfuscators often violate the CLI spec, so there's no reasonable way for us test our tooling against them. Even if we decided to invest into this.

sturlath commented 2 years ago

I understand. But please add some information in the logs about the offending dll. That makes it easier to find the the creators and ask them to make it trim friendly.

sturlath commented 2 years ago

@sbomer can you see what dll is causing this? We are having problem pinpointing it

marek-safar commented 2 years ago

One of the problematic dlls is Volo.Abp.Commercial.SuiteTemplates.dll thought I didn't check them all

vitek-karas commented 2 years ago

There's no plan to support obfuscated assemblies, but we should try to play nice. So we could use the known marks of an obfuscated assembly and when we detect an assembly like that, make the linker warn/error with some helpful message.