12345678910111213141516171819202122232425262728293031323334353637383940 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <TargetFramework>netcoreapp2.1</TargetFramework>
- </PropertyGroup>
- <ItemGroup>
- <Compile Remove="Controllers\MachineController.cs" />
- <Compile Remove="Controllers\MachineMaterialMstController.cs" />
- <Compile Remove="Controllers\MachineMaterialService.cs" />
- <Compile Remove="Controllers\MacStatusController.cs" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore.App" />
- <PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.1.2" PrivateAssets="All" />
- <PackageReference Include="Microsoft.Extensions.Logging.Log4Net.AspNetCore" Version="3.1.0" />
- <PackageReference Include="NLog.Config" Version="4.7.5" />
- <PackageReference Include="System.Text.Encoding.CodePages" Version="5.0.0" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="Cksoft.Unity">
- <HintPath>..\..\..\..\WebApplet\dll\Cksoft.Unity.dll</HintPath>
- </Reference>
- <Reference Include="DllEapCommon">
- <HintPath>..\..\..\..\WebApplet\dll\DllEapCommon.dll</HintPath>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <None Update="-.ofilm.com_chain.crt">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- <None Update="_.ofilm.com.key">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|