OpWin.csproj 538 B

123456789101112131415161718192021
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net6.0-windows</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <UseWindowsForms>true</UseWindowsForms>
  7. <ImplicitUsings>enable</ImplicitUsings>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\OASystem.Api\OASystem.API.csproj" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <Reference Include="Aspose.Words">
  14. <HintPath>..\package\Aspose.Words.dll</HintPath>
  15. </Reference>
  16. </ItemGroup>
  17. </Project>