32 lines
1.4 KiB
XML
32 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<ReferenceBlazorBuildLocally>true</ReferenceBlazorBuildLocally>
|
|
<RazorLangVersion>3.0</RazorLangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.AspNetCore.Components.WebAssembly" />
|
|
<Reference Include="Microsoft.AspNetCore.Blazor.HttpClient" />
|
|
</ItemGroup>
|
|
|
|
<!-- A bit of msbuild magic to support reference resolver tests -->
|
|
<Target Name="CreateReferenceHintPathsList" AfterTargets="ResolveAssemblyReferences">
|
|
<ItemGroup>
|
|
<_BclFile Include="$(ComponentsWebAssemblyBaseClassLibraryPath)*" />
|
|
<_BclFile Include="$(ComponentsWebAssemblyBaseClassLibraryFacadesPath)*" />
|
|
<_BclFile Include="$(ComponentsWebAssemblyFrameworkPath)*" />
|
|
</ItemGroup>
|
|
|
|
<WriteLinesToFile Lines="@(ReferencePath);@(ReferenceDependencyPaths)" File="$(IntermediateOutputPath)referenceHints.txt" WriteOnlyWhenDifferent="true" Overwrite="true" />
|
|
<WriteLinesToFile Lines="@(_BclFile)" File="$(IntermediateOutputPath)bclLocations.txt" WriteOnlyWhenDifferent="true" Overwrite="true" />
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="$(IntermediateOutputPath)bclLocations.txt" Link="bclLocations.txt" Type="Non-Resx" />
|
|
<EmbeddedResource Include="$(IntermediateOutputPath)referenceHints.txt" Link="referenceHints.txt" Type="Non-Resx" />
|
|
</ItemGroup>
|
|
</Target>
|
|
|
|
</Project>
|