Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Switch to PackageLicenseExpression #72

Merged
merged 1 commit into from
Nov 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions src/FSharp.AWS.DynamoDB/FSharp.AWS.DynamoDB.fsproj
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<TargetFramework>netstandard2.0</TargetFramework>
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IIRC in some strange cases, you need to explicitly specify the framework if you have a single-item list...

<OutputPath>..\..\bin\</OutputPath>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Description>A library that provides an idiomatic F# API for AWS DynamoDB.</Description>
<Description>An idiomatic F# wrapper for the AWS DynamoDB SDK.</Description>
<Authors>Eirik Tsarpalis</Authors>
<Company />
<Copyright>Copyright 2016</Copyright>
<Product />
<PackageLicense>MIT</PackageLicense>
<PackageLicenseUrl>https://github.com/fsprojects/FSharp.AWS.DynamoDB/blob/master/License.md</PackageLicenseUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/fsprojects/FSharp.AWS.DynamoDB</PackageProjectUrl>
<PackageIconUrl>https://avatars0.githubusercontent.com/u/6001315</PackageIconUrl>
<PackageTags>fsharp, f#, aws, amazon, dynamodb</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Include="paket.references" />
<Compile Include="..\..\paket-files\eiriktsarpalis\TypeShape\src\TypeShape\TypeShape.fs">
<Paket>True</Paket>
<Link>TypeShape/TypeShape.fs</Link>
Expand All @@ -41,7 +39,6 @@
<Compile Include="TableContext.fs" />
<Compile Include="Extensions.fs" />
<None Include="Script.fsx" />
<None Include="paket.references" />
<None Include="paket.template" />
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<None Include="paket.references" />
<Compile Include="Utils.fs" />
<Compile Include="RecordGenerationTests.fs" />
<Compile Include="SimpleTableOperationTests.fs" />
Expand Down