Components.TestServer.csproj 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
  4. <!-- Project supports more than one language -->
  5. <BlazorWebAssemblyLoadAllGlobalizationData>true</BlazorWebAssemblyLoadAllGlobalizationData>
  6. <Nullable>annotations</Nullable>
  7. <RazorLangVersion>latest</RazorLangVersion>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <Reference Include="Microsoft.AspNetCore" />
  11. <Reference Include="Microsoft.AspNetCore.Authentication.Cookies" />
  12. <Reference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" />
  13. <Reference Include="Microsoft.AspNetCore.Components.Server" />
  14. <Reference Include="Microsoft.AspNetCore.Http.Results" />
  15. <Reference Include="Microsoft.AspNetCore.Cors" />
  16. <Reference Include="Microsoft.AspNetCore.Mvc" />
  17. <Reference Include="Microsoft.AspNetCore.Components.Server" />
  18. <Reference Include="Microsoft.AspNetCore.Cors" />
  19. <Reference Include="Microsoft.AspNetCore.Mvc" />
  20. <Reference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" />
  21. <Reference Include="Microsoft.AspNetCore.Mvc.ViewFeatures" />
  22. <Reference Include="Microsoft.AspNetCore.SignalR" />
  23. <Reference Include="Microsoft.AspNetCore.Testing" />
  24. <Reference Include="Microsoft.Extensions.Hosting" />
  25. <Reference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <ProjectReference Include="..\BasicTestApp\BasicTestApp.csproj" />
  29. <ProjectReference Include="..\Components.WasmMinimal\Components.WasmMinimal.csproj" />
  30. <ProjectReference Include="..\Components.WasmRemoteAuthentication\Components.WasmRemoteAuthentication.csproj" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <Compile Include="..\..\..\WebAssembly\DevServer\src\Server\*.cs" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute">
  37. <_Parameter1>Microsoft.AspNetCore.Testing.BasicTestApp.ContentRoot</_Parameter1>
  38. <_Parameter2 Condition="'$(IsHelixJob)' != 'true'">$([MSBuild]::NormalizeDirectory('$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\BasicTestApp'))'))</_Parameter2>
  39. <_Parameter2 Condition="'$(IsHelixJob)' == 'true'">..\BasicTestApp</_Parameter2>
  40. </AssemblyAttribute>
  41. </ItemGroup>
  42. </Project>