mirror of
https://github.com/Smaug123/gitea-repo-config
synced 2025-10-05 07:28:40 +00:00
41 lines
1.6 KiB
XML
41 lines
1.6 KiB
XML
<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>
|