mirror of
https://github.com/Smaug123/gitea-repo-config
synced 2025-10-05 07:28:40 +00:00
* Bump FsUnit from 5.2.0 to 5.3.0 Bumps [FsUnit](https://github.com/fsprojects/FsUnit) from 5.2.0 to 5.3.0. - [Release notes](https://github.com/fsprojects/FsUnit/releases) - [Changelog](https://github.com/fsprojects/FsUnit/blob/master/RELEASE_NOTES.md) - [Commits](https://github.com/fsprojects/FsUnit/compare/5.2.0...5.3.0) --- updated-dependencies: - dependency-name: FsUnit dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update deps --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Smaug123 <patrick+github@patrickstevens.co.uk>
30 lines
1001 B
XML
30 lines
1001 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Utils.fs" />
|
|
<Compile Include="TestJsonSchema.fs" />
|
|
<Compile Include="TestSwaggerJson.fs" />
|
|
<Content Include="GiteaConfig.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FsUnit" Version="5.3.0" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
|
|
<PackageReference Include="NJsonSchema" Version="10.8.0" />
|
|
<PackageReference Include="NUnit" Version="3.13.3" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.4.2" />
|
|
<PackageReference Include="NUnit.Analyzers" Version="3.6.1" />
|
|
<PackageReference Include="coverlet.collector" Version="3.2.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Gitea.Declarative.Lib\Gitea.Declarative.Lib.fsproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|