|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFrameworks>net9.0;net8.0</TargetFrameworks> |
| 5 | + <ImplicitUsings>enable</ImplicitUsings> |
| 6 | + <Nullable>enable</Nullable> |
| 7 | + <Authors>IoTSharp</Authors> |
| 8 | + <FileVersion>1.0.0</FileVersion> |
| 9 | + <AssemblyVersion>1.0.0</AssemblyVersion> |
| 10 | + <Description>Provides GitRepository's file configuration provider</Description> |
| 11 | + <PackageTags>GitRepository;configuration; ASP.NET Core</PackageTags> |
| 12 | + <RepositoryUrl>https://github.com/IoTSharp/Extensions.Configuration.GitRepository</RepositoryUrl> |
| 13 | + <RepositoryType>Git</RepositoryType> |
| 14 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 15 | + <PackageIcon>Icon.png</PackageIcon> |
| 16 | + <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
| 17 | + <PackageProjectUrl>https://github.com/IoTSharp/Extensions.Configuration.GitRepository</PackageProjectUrl> |
| 18 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 19 | + </PropertyGroup> |
| 20 | + |
| 21 | + <ItemGroup Condition="'$(TargetFramework)' == 'net9.0'"> |
| 22 | + <PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.*" /> |
| 23 | + <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.*" /> |
| 24 | + <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.*" /> |
| 25 | + </ItemGroup> |
| 26 | + |
| 27 | + <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> |
| 28 | + <PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.*" /> |
| 29 | + <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.*" /> |
| 30 | + <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.*" /> |
| 31 | + </ItemGroup> |
| 32 | + |
| 33 | + <ItemGroup> |
| 34 | + <None Include="..\Icon.png" Link="Icon.png"> |
| 35 | + <PackagePath></PackagePath> |
| 36 | + <Pack>true</Pack> |
| 37 | + </None> |
| 38 | + <None Include="..\README.md" Link="README.md"> |
| 39 | + <PackagePath>\</PackagePath> |
| 40 | + <Pack>True</Pack> |
| 41 | + </None> |
| 42 | + </ItemGroup> |
| 43 | + |
| 44 | + <ItemGroup> |
| 45 | + <PackageReference Include="NGitLab" Version="8.3.0" /> |
| 46 | + </ItemGroup> |
| 47 | + |
| 48 | + <ItemGroup> |
| 49 | + <ProjectReference Include="..\Extensions.Configuration.GitRepository\Extensions.Configuration.GitRepository.csproj" /> |
| 50 | + </ItemGroup> |
| 51 | +</Project> |
0 commit comments