12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <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>
- </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" />
- </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>
- </Project>
|