ConsoleCSharp.csproj 1.1 KB

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net7.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <ProjectReference Include="..\ClassLibrary14\Library1_4Basics.csproj" />
  10. <ProjectReference Include="..\ClassLibrary5\Library5Class.csproj" />
  11. <ProjectReference Include="..\ClassLibrary6\Library6Properties.csproj" />
  12. <ProjectReference Include="..\ClassLibrary7\Library7Inheritance.csproj" />
  13. <ProjectReference Include="..\Library10TextFiles\Library10TextFiles.csproj" />
  14. <ProjectReference Include="..\Library11Authorization\Library11Authorization.csproj" />
  15. <ProjectReference Include="..\Library12DateTime\Library12DateTime.csproj" />
  16. <ProjectReference Include="..\Library13RegularExpressions\Library13RegularExpressions.csproj" />
  17. <ProjectReference Include="..\Library8Interface\Library8Interface.csproj" />
  18. <ProjectReference Include="..\Library9Delegates\Library9Delegates.csproj" />
  19. <ProjectReference Include="..\Other\Other.csproj" />
  20. </ItemGroup>
  21. </Project>