4c23f92937
- Aggiunti commenti - Modificato grafica in WebWindowTest
56 lines
2.1 KiB
XML
56 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="compilerconfig.json" />
|
|
<Content Remove="Hardware\Setup.json" />
|
|
<Content Remove="Data\Setup.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="compilerconfig.json" />
|
|
<None Include="Hardware\Setup.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Include="Data\Setup.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Include="wwwroot\Images\ImgRouter\Doppia.svg">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Include="wwwroot\Images\ImgRouter\Singola.svg">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Test.UI.Client\Test.UI.Client.csproj" />
|
|
<ProjectReference Include="..\WebAedificaConfigurator\WebAedificaConfigurator.csproj" />
|
|
<ProjectReference Include="..\WebWindow.Base\WebWindow.Base.csproj" />
|
|
<ProjectReference Include="..\WebWindowComplex\WebWindowComplex.csproj" />
|
|
<ProjectReference Include="..\WebWindowConfigurator\WebWindowConfigurator.csproj" />
|
|
<ProjectReference Include="..\WebWindowTest\WebWindowTest.csproj" />
|
|
<PackageReference Include="EgwCoreLib.Lux.Core" Version="0.9.2508.712" />
|
|
<PackageReference Include="EgwCoreLib.Lux.Data" Version="0.9.2508.712" />
|
|
<PackageReference Include="EgwCoreLib.Razor" Version="1.5.2507.1815" />
|
|
<PackageReference Include="EgwCoreLib.Utils" Version="1.5.2507.1815" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="8.0.17" />
|
|
<PackageReference Include="RestSharp" Version="112.1.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Data\AntaDoppia.jwd">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="Data\AntaSingola.jwd">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|