Apq.Cfg.Samples.csproj 785 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <ItemGroup>
  3. <ProjectReference Include="..\..\Apq.Cfg\Apq.Cfg.csproj" />
  4. <ProjectReference Include="..\..\Apq.Cfg.Ini\Apq.Cfg.Ini.csproj" />
  5. <ProjectReference Include="..\..\Apq.Cfg.Xml\Apq.Cfg.Xml.csproj" />
  6. <ProjectReference Include="..\..\Apq.Cfg.Yaml\Apq.Cfg.Yaml.csproj" />
  7. <ProjectReference Include="..\..\Apq.Cfg.Toml\Apq.Cfg.Toml.csproj" />
  8. </ItemGroup>
  9. <ItemGroup>
  10. <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
  11. </ItemGroup>
  12. <PropertyGroup>
  13. <OutputType>Exe</OutputType>
  14. <TargetFramework>net8.0</TargetFramework>
  15. <ImplicitUsings>enable</ImplicitUsings>
  16. <Nullable>enable</Nullable>
  17. <IsPackable>false</IsPackable>
  18. </PropertyGroup>
  19. </Project>