aspnetcore/test/testapps/TestContentPackage/build/TestContentPackage.props

20 lines
975 B
XML

<Project>
<PropertyGroup>
<!-- Update this to match your package ID exactly -->
<_PackageId>TestContentPackage</_PackageId>
<_ContentDir>$(MSBuildThisFileDirectory)..\content\</_ContentDir>
</PropertyGroup>
<ItemGroup>
<!-- All files under "content" will be included with the Blazor app build output -->
<BlazorPackageContentFile Include="$(_ContentDir)**" SourcePackage="$(_PackageId)" />
<!-- We'll generate a <script> tag importing each of the following JavaScript files -->
<!-- Change the "Include" pattern if you don't want to include all .js files. -->
<BlazorPackageJsRef Include="$(_ContentDir)**\*.js" SourcePackage="$(_PackageId)" />
<!-- We'll generate a <link> tag importing each of the following CSS files -->
<!-- Change the "Include" pattern if you don't want to include all .css files. -->
<BlazorPackageCssRef Include="$(_ContentDir)**\*.css" SourcePackage="$(_PackageId)" />
</ItemGroup>
</Project>