Files
gitea-repo-config/Gitea.Declarative/Gitea.Declarative.fsproj
2025-03-21 17:32:10 +00:00

41 lines
1.5 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.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.2.5" />
<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>