1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net7.0-windows</TargetFramework>
- <UseWindowsForms>true</UseWindowsForms>
- <NoWin32Manifest>true</NoWin32Manifest>
- <ApplicationIcon>定位.ico</ApplicationIcon>
- </PropertyGroup>
- <ItemGroup>
- <Content Include="定位.ico" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="DevExpress.Win.Design" Version="23.2.3" />
- <PackageReference Include="System.Management" Version="9.0.3" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\DW5S.Basic\01.DW5S.Basic.csproj" />
- <ProjectReference Include="..\DW5S.Controller\08.DW5S.Controller.csproj" />
- <ProjectReference Include="..\DW5S.DTO\02.DW5S.DTO.csproj" />
- <ProjectReference Include="..\DW5S.Entity\03.DW5S.Entity.csproj" />
- <ProjectReference Include="..\DW5S.KxcApi\06.DW5S.KxcApi.csproj" />
- <ProjectReference Include="..\DW5S.Repostory\04.DW5S.Repostory.csproj" />
- <ProjectReference Include="..\DW5S.Service\07.DW5S.Service.csproj" />
- <ProjectReference Include="..\DW5S.ViewModel\09.DW5S.ViewModel.csproj" />
- <ProjectReference Include="..\DW5S.WebApi\05.DW5S.WebApi.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Compile Update="EditForms\AdChannelEditor.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Update="EditForms\StationEditor.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Update="Properties\Settings.Designer.cs">
- <DesignTimeSharedInput>True</DesignTimeSharedInput>
- <AutoGen>True</AutoGen>
- <DependentUpon>Settings.settings</DependentUpon>
- </Compile>
- <Compile Update="UserControl\CtrlADTask.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Update="UserControl\CtrlTaskTemplate.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Update="UserControl\CtrlStation.cs">
- <SubType>UserControl</SubType>
- </Compile>
- </ItemGroup>
- <ItemGroup>
- <None Update="data.gmdb">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="dw5s.db">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="Image\XlCalc.svg">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="Properties\Settings.settings">
- <Generator>SettingsSingleFileGenerator</Generator>
- <LastGenOutput>Settings.Designer.cs</LastGenOutput>
- </None>
- <None Update="Tips.txt">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|