1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net8.0-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- <UseWPF>true</UseWPF>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- <Title>电动振动台集散控制组件控制端</Title>
- <IsPublishable>False</IsPublishable>
- <Company>北京航天希尔测试技术有限公司</Company>
- <ApplicationIcon>管理端.ico</ApplicationIcon>
- <AssemblyName>电动振动台集散控制组件管理端</AssemblyName>
- <Authors>北京航天希尔测试技术有限公司</Authors>
- <NoWarn>$(NoWarn);SYSLIB0011;SYSLIB0006;SYSLIB0014;SYSLIB0051;SYSLIB0050;CS8618;CS8604;CS8600;CS8603;CS8618;CS8625;CS8629;CS8629;CS8601;CS8602;CS8622;CS8765;CS8714;CS8767;CS0672</NoWarn>
- </PropertyGroup>
- <ItemGroup>
- <None Remove="Resources\background.png" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="管理端.ico" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
- <PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0" />
- </ItemGroup>
- <ItemGroup>
- <Resource Include="Resources\background.png" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\AppResource\AppResource.csproj" />
- <ProjectReference Include="..\EasyMQ.MessagePackSerializer\EasyMQ.MessagePackSerializer.csproj" />
- <ProjectReference Include="..\HandyControl\HandyControl\HandyControl.csproj" />
- <ProjectReference Include="..\OxyPlot\OxyPlot.SkiaSharp.Wpf\OxyPlot.SkiaSharp.Wpf.csproj" />
- <ProjectReference Include="..\Shaker.Model\Shaker.csproj" />
- <ProjectReference Include="..\XamlAnimatedGif\XamlAnimatedGif.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Compile Update="Properties\Resources.Designer.cs">
- <DesignTime>True</DesignTime>
- <AutoGen>True</AutoGen>
- <DependentUpon>Resources.resx</DependentUpon>
- </Compile>
- <Compile Update="View\DataSetPlotConfigView.xaml.cs">
- <SubType>Code</SubType>
- </Compile>
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Update="Properties\Resources.resx">
- <Generator>ResXFileCodeGenerator</Generator>
- <LastGenOutput>Resources.Designer.cs</LastGenOutput>
- </EmbeddedResource>
- </ItemGroup>
- <ItemGroup>
- <None Update="GIF\Shaker0.gif">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- <None Update="GIF\Shaker1.gif">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- <None Update="GIF\Shaker3.gif">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- <Import Project="..\ActiveMQ\Apache.NMS.ActiveMQ\Apache.NMS.ActiveMQ.projitems" Label="Shared" />
- <Import Project="..\EasyMQ\EasyMQ.projitems" Label="Shared" />
- <Import Project="..\ActiveMQ\ICSharpCode.SharpZipLib\ICSharpCode.SharpZipLib.projitems" Label="Shared" />
- </Project>
|