You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.4 KiB
37 lines
1.4 KiB
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Content Remove="wwwroot\js\page.js" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="wwwroot\js\page.js" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
|
|
<ProjectReference Include="..\IoTClient\Assets\StreamingAssets\IoT.Resources.csproj" />
|
|
<ProjectReference Include="..\IoT.Shared\IoT.Shared.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Update="wwwroot\pages\config.html.js">
|
|
<DependentUpon>config.html</DependentUpon>
|
|
</Content>
|
|
<Content Update="wwwroot\pages\node.html.js">
|
|
<DependentUpon>node.html</DependentUpon>
|
|
</Content>
|
|
<Content Update="wwwroot\pages\device.html.js">
|
|
<DependentUpon>device.html</DependentUpon>
|
|
</Content>
|
|
<Content Update="wwwroot\pages\products.html.js">
|
|
<DependentUpon>products.html</DependentUpon>
|
|
</Content>
|
|
</ItemGroup>
|
|
</Project> |