mirror of
https://github.com/Smaug123/WoofWare.Myriad
synced 2025-10-14 08:28:39 +00:00
* Bump Microsoft.NET.Test.Sdk from 17.14.1 to 18.0.0 --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-version: 18.0.0 dependency-type: direct:production update-type: version-update:semver-major - dependency-name: Microsoft.NET.Test.Sdk dependency-version: 18.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Bump NUnit3TestAdapter from 5.0.0 to 5.2.0 --- updated-dependencies: - dependency-name: NUnit3TestAdapter dependency-version: 5.2.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: NUnit3TestAdapter dependency-version: 5.2.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Bump WoofWare.Expect from 0.8.2 to 0.8.3 --- updated-dependencies: - dependency-name: WoofWare.Expect dependency-version: 0.8.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump ApiSurface from 5.0.1 to 5.0.2 --- updated-dependencies: - dependency-name: ApiSurface dependency-version: 5.0.2 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: ApiSurface dependency-version: 5.0.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump TypeEquality from 0.3.0 to 0.4.2 --- updated-dependencies: - dependency-name: TypeEquality dependency-version: 0.4.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * 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 <3138005+Smaug123@users.noreply.github.com>
72 lines
3.0 KiB
XML
72 lines
3.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<Authors>Patrick Stevens</Authors>
|
|
<Copyright>Copyright (c) Patrick Stevens 2023</Copyright>
|
|
<Description>Provides some Myriad compile-time code generation plugins.</Description>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryUrl>https://github.com/Smaug123/WoofWare.Myriad</RepositoryUrl>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageTags>myriad;fsharp;source-generator;source-gen;json</PackageTags>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<WarnOn>FS3559</WarnOn>
|
|
<PackageId>WoofWare.Myriad.Plugins</PackageId>
|
|
<PackageIcon>logo.png</PackageIcon>
|
|
<NoWarn>NU5118</NoWarn>
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Myriad.Core" Version="0.8.3" />
|
|
<PackageReference Include="TypeEquality" Version="0.4.2" />
|
|
<PackageReference Include="WoofWare.Whippet.Fantomas" Version="0.6.3" />
|
|
<!-- the lowest version allowed by Myriad.Core -->
|
|
<PackageReference Update="FSharp.Core" Version="6.0.1" PrivateAssets="all"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="AssemblyInfo.fs" />
|
|
<Compile Include="List.fs"/>
|
|
<Compile Include="Tuple.fs" />
|
|
<Compile Include="Text.fs" />
|
|
<Compile Include="Measure.fs" />
|
|
<Compile Include="AstHelper.fs" />
|
|
<Compile Include="Parameters.fs" />
|
|
<Compile Include="RemoveOptionsGenerator.fs"/>
|
|
<Compile Include="MyriadParamParser.fs" />
|
|
<Compile Include="InterfaceMockGenerator.fs"/>
|
|
<Compile Include="CapturingInterfaceMockGenerator.fs" />
|
|
<Compile Include="JsonSerializeGenerator.fs"/>
|
|
<Compile Include="JsonParseGenerator.fs"/>
|
|
<Compile Include="HttpClientGenerator.fs"/>
|
|
<Compile Include="CataGenerator.fs" />
|
|
<Compile Include="ArgParserGenerator.fs" />
|
|
<Compile Include="JsonHelpers.fs" />
|
|
<Compile Include="HttpMethod.fs" />
|
|
<Compile Include="SwaggerV2.fs" />
|
|
<Compile Include="OpenApi3.fs" />
|
|
<Compile Include="SwaggerClientGenerator.fs" />
|
|
<EmbeddedResource Include="version.json"/>
|
|
<EmbeddedResource Include="SurfaceBaseline.txt"/>
|
|
<None Include="..\README.md">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
<None Include="logo.png">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\WoofWare.Myriad.Plugins.Attributes\WoofWare.Myriad.Plugins.Attributes.fsproj"/>
|
|
<!-- NuGet is such a clown package manager! Get the DLLs into the Nupkg artefact, I have no idea why this is needed,
|
|
but without this line, we don't get any dependency at all packaged into the resulting artefact. -->
|
|
<None Include="$(OutputPath)\*.dll" Pack="true" PackagePath="lib\$(TargetFramework)"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|