mirror of
https://github.com/Smaug123/gitea-repo-config
synced 2025-10-09 01:18:42 +00:00
Move to net8 and use passthru infra (#76)
This commit is contained in:
@@ -1,40 +1,40 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<PackAsTool>true</PackAsTool>
|
||||
<PackageId>Gitea.Declarative</PackageId>
|
||||
<Authors>Patrick Stevens</Authors>
|
||||
<Description>Reconcile the configuration of a running Gitea server with a declarative specification.</Description>
|
||||
<Copyright>Copyright (c) Patrick Stevens 2022</Copyright>
|
||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||
<RepositoryUrl>https://github.com/Smaug123/</RepositoryUrl>
|
||||
<RepositoryType>git</RepositoryType>
|
||||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||
<PackageTags>gitea</PackageTags>
|
||||
<SelfContained>true</SelfContained>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="ArgsCrate.fs" />
|
||||
<Compile Include="Result.fs" />
|
||||
<Compile Include="Utils.fs" />
|
||||
<Compile Include="Reconcile.fs" />
|
||||
<Compile Include="OutputSchema.fs" />
|
||||
<Compile Include="RefreshAuth.fs" />
|
||||
<Compile Include="Verify.fs" />
|
||||
<Compile Include="Program.fs" />
|
||||
<None Include="..\README.md" Pack="true" PackagePath="/" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Gitea.Declarative.Lib\Gitea.Declarative.Lib.fsproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Argu" Version="6.1.1" />
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
||||
<PackageReference Include="NJsonSchema" Version="10.9.0" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<PackAsTool>true</PackAsTool>
|
||||
<PackageId>Gitea.Declarative</PackageId>
|
||||
<Authors>Patrick Stevens</Authors>
|
||||
<Description>Reconcile the configuration of a running Gitea server with a declarative specification.</Description>
|
||||
<Copyright>Copyright (c) Patrick Stevens 2022</Copyright>
|
||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||
<RepositoryUrl>https://github.com/Smaug123/</RepositoryUrl>
|
||||
<RepositoryType>git</RepositoryType>
|
||||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||
<PackageTags>gitea</PackageTags>
|
||||
<SelfContained>true</SelfContained>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="ArgsCrate.fs" />
|
||||
<Compile Include="Result.fs" />
|
||||
<Compile Include="Utils.fs" />
|
||||
<Compile Include="Reconcile.fs" />
|
||||
<Compile Include="OutputSchema.fs" />
|
||||
<Compile Include="RefreshAuth.fs" />
|
||||
<Compile Include="Verify.fs" />
|
||||
<Compile Include="Program.fs" />
|
||||
<None Include="..\README.md" Pack="true" PackagePath="/" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Gitea.Declarative.Lib\Gitea.Declarative.Lib.fsproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Argu" Version="6.1.1" />
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
||||
<PackageReference Include="NJsonSchema" Version="10.9.0" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
Reference in New Issue
Block a user