123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <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="Microsoft.Data.Sqlite.Core" Version="9.0.1" />
- <PackageReference Include="System.Management" Version="9.0.2" />
- </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="Properties\Settings.Designer.cs">
- <DesignTimeSharedInput>True</DesignTimeSharedInput>
- <AutoGen>True</AutoGen>
- <DependentUpon>Settings.settings</DependentUpon>
- </Compile>
- </ItemGroup>
- <ItemGroup>
- <None Update="data.gmdb">
- <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>
|