Created
August 22, 2018 19:51
-
-
Save wadewegner/a66af31149d279757357b05deb6c032c to your computer and use it in GitHub Desktop.
Solution to supporting net452
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<configuration> | |
<activePackageSource> | |
<add key="NuGet official package source" value="https://api.nuget.org/v3/index.json" /> | |
</activePackageSource> | |
<packageSources> | |
<add key="MyGet" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" /> | |
</packageSources> | |
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks> | |
<RootNamespace>Salesforce.Common</RootNamespace> | |
<AssemblyName>Salesforce.Common</AssemblyName> | |
<SignAssembly>true</SignAssembly> | |
<AssemblyOriginatorKeyFile>..\ForceTookitForNet.snk</AssemblyOriginatorKeyFile> | |
<AssemblyTitle>Salesforce.Common</AssemblyTitle> | |
<Company>salesforce.com</Company> | |
<Product>Salesforce.Common</Product> | |
<Description></Description> | |
<Copyright>Copyright © 2018</Copyright> | |
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> | |
<AssemblyVersion>1.0.0.0</AssemblyVersion> | |
<FileVersion>1.0.0.0</FileVersion> | |
</PropertyGroup> | |
<PropertyGroup Condition=" '$(TargetFramework)' == 'net452' "> | |
<RuntimeIdentifier>win7-x64</RuntimeIdentifier> | |
<FrameworkPathOverride>$(NuGetPackageRoot)microsoft.targetingpack.netframework.v4.5.2\1.0.1\lib\net452\</FrameworkPathOverride> | |
</PropertyGroup> | |
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' "> | |
<PackageReference Include="Microsoft.TargetingPack.NETFramework.v4.5.2" Version="1.0.1" ExcludeAssets="All" PrivateAssets="All" /> | |
<PackageReference Include="Microsoft.Net.Http" Version="2.2.29" /> | |
</ItemGroup> | |
<PropertyGroup> | |
<SignAssembly>true</SignAssembly> | |
<AssemblyOriginatorKeyFile>..\ForceTookitForNet.snk</AssemblyOriginatorKeyFile> | |
</PropertyGroup> | |
<ItemGroup> | |
<!-- <PackageReference Include="Microsoft.TargetingPack.NETFramework.v4.5.2" Version="1.0.1" /> --> | |
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" /> | |
</ItemGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment