YBEE.EQM.Application.csproj 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <NoWarn>1701;1702;1591</NoWarn>
  5. <DocumentationFile>YBEE.EQM.Application.xml</DocumentationFile>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  9. <DebugType>full</DebugType>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  12. <DebugType>full</DebugType>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <None Remove="applicationsettings.Development.json" />
  16. <None Remove="applicationsettings.Production.json" />
  17. <None Remove="YBEE.EQM.Application.xml" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <Content Include="applicationsettings.Production.json">
  21. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  22. </Content>
  23. <Content Include="applicationsettings.Development.json">
  24. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  25. </Content>
  26. </ItemGroup>
  27. <ItemGroup>
  28. <ProjectReference Include="..\YBEE.EQM.Core\YBEE.EQM.Core.csproj" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <Folder Include="Base\Person\Services\" />
  32. <Folder Include="Base\SchoolClassStudent\Services\" />
  33. <Folder Include="Base\SchoolTeacher\" />
  34. <Folder Include="Base\SchoolTeacherCourse\" />
  35. <Folder Include="Student\SpecialStudent\Services\" />
  36. <Folder Include="Summary\Services\" />
  37. </ItemGroup>
  38. </Project>