| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
- <!-- Project supports more than one language -->
- <BlazorWebAssemblyLoadAllGlobalizationData>true</BlazorWebAssemblyLoadAllGlobalizationData>
- <Nullable>annotations</Nullable>
- <RazorLangVersion>latest</RazorLangVersion>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="Microsoft.AspNetCore" />
- <Reference Include="Microsoft.AspNetCore.Authentication.Cookies" />
- <Reference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" />
- <Reference Include="Microsoft.AspNetCore.Components.Server" />
- <Reference Include="Microsoft.AspNetCore.Http.Results" />
- <Reference Include="Microsoft.AspNetCore.Cors" />
- <Reference Include="Microsoft.AspNetCore.Mvc" />
- <Reference Include="Microsoft.AspNetCore.Components.Server" />
- <Reference Include="Microsoft.AspNetCore.Cors" />
- <Reference Include="Microsoft.AspNetCore.Mvc" />
- <Reference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" />
- <Reference Include="Microsoft.AspNetCore.Mvc.ViewFeatures" />
- <Reference Include="Microsoft.AspNetCore.SignalR" />
- <Reference Include="Microsoft.AspNetCore.Testing" />
- <Reference Include="Microsoft.Extensions.Hosting" />
- <Reference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\BasicTestApp\BasicTestApp.csproj" />
- <ProjectReference Include="..\Components.WasmMinimal\Components.WasmMinimal.csproj" />
- <ProjectReference Include="..\Components.WasmRemoteAuthentication\Components.WasmRemoteAuthentication.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="..\..\..\WebAssembly\DevServer\src\Server\*.cs" />
- </ItemGroup>
- <ItemGroup>
- <AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute">
- <_Parameter1>Microsoft.AspNetCore.Testing.BasicTestApp.ContentRoot</_Parameter1>
- <_Parameter2 Condition="'$(IsHelixJob)' != 'true'">$([MSBuild]::NormalizeDirectory('$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\BasicTestApp'))'))</_Parameter2>
- <_Parameter2 Condition="'$(IsHelixJob)' == 'true'">..\BasicTestApp</_Parameter2>
- </AssemblyAttribute>
- </ItemGroup>
- </Project>
|