Skip to content

Commit

Permalink
Remove duplicate props in fsproj.
Browse files Browse the repository at this point in the history
  • Loading branch information
nojaf committed Oct 6, 2023
1 parent f34b144 commit 4641703
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
13 changes: 7 additions & 6 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<!-- Set up version and package release note generation from this changelog. -->
<ChangelogFile>$(MSBuildThisFileDirectory)CHANGELOG.md</ChangelogFile>
<!-- Common packaging properties for all packages in this repo -->
<Authors>Florian Verdonck, David Schaefer</Authors>
<Authors>G-Research</Authors>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Description>
F# analyzers used within G-Research.
</Description>
F# analyzers used within G-Research.
</Description>
<Copyright>Copyright G-Research © $([System.DateTime]::UtcNow.Year)</Copyright>
<PackageTags>F# fsharp analyzers</PackageTags>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
Expand All @@ -17,6 +17,7 @@ F# analyzers used within G-Research.
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://g-research.github.io/fsharp-analyzers/</PackageProjectUrl>
<PackageReleaseNotes>https://github.com/G-Research/fsharp-analyzers/blob/main/CHANGELOG.md</PackageReleaseNotes>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<WarningsAsErrors>FS0025</WarningsAsErrors>
Expand All @@ -33,8 +34,8 @@ F# analyzers used within G-Research.
</PropertyGroup>

<ItemGroup Condition="'$(IsPackable)' == 'true'">
<None Include="$(MSBuildThisFileDirectory)README.md" Visible="false" Pack="true" PackagePath="" />
<PackageReference Include="Ionide.KeepAChangelog.Tasks" PrivateAssets="all" />
<PackageReference Include="DotNet.ReproducibleBuilds" PrivateAssets="all" />
<None Include="$(MSBuildThisFileDirectory)README.md" Visible="false" Pack="true" PackagePath=""/>
<PackageReference Include="Ionide.KeepAChangelog.Tasks" PrivateAssets="all"/>
<PackageReference Include="DotNet.ReproducibleBuilds" PrivateAssets="all"/>
</ItemGroup>
</Project>
5 changes: 0 additions & 5 deletions src/FSharp.Analyzers/FSharp.Analyzers.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsPackable>true</IsPackable>
<AssemblyName>G-Research.FSharp.Analyzers</AssemblyName>
<Authors>G-Research</Authors>
<Description>Analyzers internally used at G-Research</Description>
<PackageReleaseNotes>https://github.com/G-Research/fsharp-analyzers/blob/main/CHANGELOG.md</PackageReleaseNotes>
<PackageTags>fsharp;analyzers</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Tailcalls>true</Tailcalls>
</PropertyGroup>

Expand Down

0 comments on commit 4641703

Please sign in to comment.