| 123456789101112131415161718192021222324252627282930313233343536 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFrameworks>net6.0;net8.0;net9.0</TargetFrameworks>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <IsPackable>false</IsPackable>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
- </ItemGroup>
- <ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
- <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
- </ItemGroup>
- <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
- <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
- </ItemGroup>
- <ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
- <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Apq.Cfg\Apq.Cfg.csproj" />
- <ProjectReference Include="..\..\Apq.Cfg.Ini\Apq.Cfg.Ini.csproj" />
- <ProjectReference Include="..\..\Apq.Cfg.Xml\Apq.Cfg.Xml.csproj" />
- <ProjectReference Include="..\..\Apq.Cfg.Yaml\Apq.Cfg.Yaml.csproj" />
- <ProjectReference Include="..\..\Apq.Cfg.Toml\Apq.Cfg.Toml.csproj" />
- <ProjectReference Include="..\..\Apq.Cfg.SourceGenerator\Apq.Cfg.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
- </ItemGroup>
- </Project>
|