Rename to Gitea.Declarative (#4)

This commit is contained in:
Patrick Stevens
2022-12-30 10:26:59 +00:00
committed by GitHub
parent c409daf659
commit 4ae932072e
25 changed files with 133 additions and 129 deletions

View File

@@ -0,0 +1,31 @@
<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="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" />
</ItemGroup>
</Project>