Skip to content
This repository has been archived by the owner on Aug 28, 2021. It is now read-only.

Commit

Permalink
added multiple targetframeworks and metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
teocomi committed Mar 3, 2020
1 parent d37b906 commit 09d5454
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions SpeckleCore/SpeckleCore.csproj
Original file line number Diff line number Diff line change
@@ -1,16 +1,30 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net45;netstandard2.0</TargetFrameworks>
<Authors>https://speckle.works</Authors>
<LangVersion>8.0</LangVersion>
<Authors>Speckle</Authors>
<Company>Speckle</Company>
<Product>SpeckleCore</Product>
<Description>.NET base for the speckle api</Description>
<Summary>.NET base for the speckle api</Summary>
<NeutralLanguage>en-US</NeutralLanguage>
<Copyright>Copyright © Speckle</Copyright>
<AssemblyName>SpeckleCore</AssemblyName>
<RootNamespace>SpeckleCore</RootNamespace>
<PackageProjectUrl>https://speckle.works</PackageProjectUrl>
<RepositoryUrl>https://github.com/speckleworks/SpeckleCore</RepositoryUrl>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Version>1.0.0.0</Version>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<InformationalVersion>1.0.0.0</InformationalVersion>
<FileVersion>1.0.0.0</FileVersion>
<PackageVersion>1.0.0.0</PackageVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Countly" Version="19.8.0">
</PackageReference>
Expand All @@ -21,4 +35,9 @@
<PackageReference Include="sqlite-net-pcl" Version="1.5.231" />
<PackageReference Include="WebSocketSharp-NonPreRelease" Version="1.0.0" />
</ItemGroup>


<ItemGroup Condition="'$(TargetFramework)' == 'net45'">
<PackageReference Include="System.Net.Http" Version="$(MicrosoftCSharpPackageVersion)" />
</ItemGroup>
</Project>

0 comments on commit 09d5454

Please sign in to comment.