mirror of
https://github.com/Smaug123/WoofWare.Whippet
synced 2025-10-07 00:38:39 +00:00
Some checks are pending
.NET / build (Debug) (push) Waiting to run
.NET / build (Release) (push) Waiting to run
.NET / analyzers (push) Waiting to run
.NET / check-dotnet-format (push) Waiting to run
.NET / check-nix-format (push) Waiting to run
.NET / Check links (push) Waiting to run
.NET / Check flake (push) Waiting to run
.NET / nuget-pack (push) Waiting to run
.NET / expected-pack (push) Blocked by required conditions
.NET / check-accurate-generations (push) Waiting to run
.NET / all-required-checks-complete (push) Blocked by required conditions
.NET / nuget-publish (push) Blocked by required conditions
.NET / nuget-publish-fantomas (push) Blocked by required conditions
.NET / nuget-publish-json-plugin (push) Blocked by required conditions
.NET / nuget-publish-json-attrs (push) Blocked by required conditions
.NET / nuget-publish-argparser-plugin (push) Blocked by required conditions
.NET / nuget-publish-argparser-attrs (push) Blocked by required conditions
69 lines
2.6 KiB
XML
69 lines
2.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<Authors>Patrick Stevens</Authors>
|
|
<Copyright>Copyright (c) Patrick Stevens 2024</Copyright>
|
|
<Description>Helpers for accessing Fantomas syntax trees.</Description>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryUrl>https://github.com/Smaug123/WoofWare.Whippet</RepositoryUrl>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageTags>fsharp;fantomas</PackageTags>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<WarnOn>FS3559</WarnOn>
|
|
<PackageId>WoofWare.Whippet.Fantomas</PackageId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="List.fs" />
|
|
<Compile Include="Primitives.fs" />
|
|
<Compile Include="SynAttributes.fs" />
|
|
<Compile Include="SynConst.fs" />
|
|
<Compile Include="SynArgInfo.fs" />
|
|
<Compile Include="SynValInfo.fs" />
|
|
<Compile Include="PreXmlDoc.fs" />
|
|
<Compile Include="Ident.fs" />
|
|
<Compile Include="SynSimplePat.fs" />
|
|
<Compile Include="SynSimplePats.fs" />
|
|
<Compile Include="SynIdent.fs" />
|
|
<Compile Include="SynLongIdent.fs" />
|
|
<Compile Include="SynExprLetOrUseTrivia.fs" />
|
|
<Compile Include="SynArgPats.fs" />
|
|
<Compile Include="SynPat.fs" />
|
|
<Compile Include="SynBinding.fs" />
|
|
<Compile Include="SynType.fs" />
|
|
<Compile Include="SynMatchClause.fs" />
|
|
<Compile Include="CompExpr.fs" />
|
|
<Compile Include="SynExpr.fs" />
|
|
<Compile Include="SynField.fs" />
|
|
<Compile Include="SynUnionCase.fs" />
|
|
<Compile Include="SynTypeDefnRepr.fs" />
|
|
<Compile Include="SynTypeDefn.fs" />
|
|
<Compile Include="SynComponentInfo.fs" />
|
|
<Compile Include="SynMemberDefn.fs" />
|
|
<Compile Include="SynAttribute.fs" />
|
|
<Compile Include="SynModuleDecl.fs" />
|
|
<Compile Include="SynModuleOrNamespace.fs" />
|
|
<Compile Include="AstHelper.fs" />
|
|
<Compile Include="Ast.fs" />
|
|
<Compile Include="Measure.fs" />
|
|
<None Include="README.md">
|
|
<Pack>True</Pack>
|
|
<PackagePath>/</PackagePath>
|
|
<Link>README.md</Link>
|
|
</None>
|
|
<None Include="version.json" />
|
|
<EmbeddedResource Include="SurfaceBaseline.txt" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Update="FSharp.Core" Version="6.0.1"/>
|
|
<!-- To match Myriad, right now, but once this is published we'll bump to latest -->
|
|
<PackageReference Include="Fantomas.FCS" Version="6.1.1"/>
|
|
<PackageReference Include="Fantomas.Core" Version="6.1.1"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|