<!DOCTYPE html>
<html>

  <head>
    <link data-require="bootstrap-css@*" data-semver="3.0.0" rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" />
    <link data-require="bootstrap@*" data-semver="3.0.0" rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" />
    <link rel="stylesheet" href="style.css" />
    <script data-require="bootstrap@*" data-semver="3.0.0" src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
    <script data-require="angular.js@1.2.0-rc3" data-semver="1.2.0-rc3" src="//code.angularjs.org/1.2.0-rc.3/angular.min.js"></script>
    <script data-require="jquery@*" data-semver="2.0.3" src="//code.jquery.com/jquery-2.0.3.min.js"></script>
    <script src="data.js"></script>
    <script src="script.js"></script>
  </head>

  <body>
    <div ng-app="">
      <div ng-controller="MyCtrl">
        <h1>This project has been moved to <a href="http://portablelibraryprofiles.apps.stephencleary.com/">http://portablelibraryprofiles.apps.stephencleary.com/</a>.</h1>

        <div>Portable Class Library (PCL) profiles as of <b>{{description}}</b>.</div>
      
        <div>
          <input type="text" ng-model="filter" class="form-control pushdown" placeholder="Filter">
          <div class="checkbox">
            <label>
              <input type="checkbox" ng-model="includeLegacy">
              Include legacy portable profiles
            </label>
          </div>
          <div class="checkbox">
            <label>
              <input type="checkbox" ng-model="includeNames">
              Show full framework names
            </label>
          </div>
        </div>

        <table class="table table-striped table-hover pushdown">
          <tr><th>#</th><th ng-show="includeNames">Name</th><th>Frameworks</th><th ng-show="includeNames">Framework Names</th><th>NuGet Target</th><th><a target="_blank" href="https://github.com/dotnet/corefx/blob/master/Documentation/architecture/net-platform-standard.md">Platform Standard</a></th><th ng-show="includeLegacy">Notes</th></tr>
          <tr ng-repeat="profile in list | filter:legacyFilter | filter:filter">
            <td><span title="{{profile.fullName}}">{{profile.profileName}}</span></td>
            <td ng-show="includeNames">{{profile.fullName}}</td>
            <td><div ng-repeat="framework in profile.frameworks" class="verticalSpacing"><span title="{{framework.fullName}}">{{framework.friendlyName}}</span></div></td>
            <td ng-show="includeNames"><div ng-repeat="framework in profile.frameworks" class="verticalSpacing">{{framework.fullName}}</div></td>
            <td>{{profile.nugetTarget}}</td>
            <td><div><div class="verticalSpacing">{{profile.netStandardGeneration}}</div><div class="verticalSpacing">{{profile.dotnetGeneration}}</div></div></td>
            <td ng-show="includeLegacy">
              <div ng-hide="profile.supportedByVisualStudio2013" class="verticalSpacing"><a href="http://visualstudio.uservoice.com/forums/121579-visual-studio/suggestions/4504987-support-portable-class-libraries-in-vs-2013-for-al">Not supported by VS2013</a></div>
              <div ng-hide="profile.supportedByVisualStudio2015" class="verticalSpacing"><a href="http://visualstudio.uservoice.com/forums/121579-visual-studio/suggestions/4504987-support-portable-class-libraries-in-vs-2013-for-al">Not supported by VS2015</a></div>
              <div ng-hide="profile.supportsAsync" class="bad verticalSpacing">Does not support async/await or HttpClient.<br/></div>
              <div ng-show="profile.supportsAsync" class="good verticalSpacing">Supports async/await and HttpClient.<br/></div>
              <div ng-hide="profile.supportsGenericVariance" class="bad verticalSpacing">Does not support generic variance.<br/></div>
              <div ng-show="profile.supportsGenericVariance" class="good verticalSpacing">Supports generic variance.<br/></div>
            </td>
          </tr>
        </table>

        <div>For more about framework names, see <a target="_blank" href="http://blog.stephencleary.com/2012/05/framework-profiles-in-net.html">Framework Profiles in .NET</a>.</div>
        <div>The program that generates this data is <a target="_blank" href="https://github.com/StephenCleary/PortableLibraryProfiles">open source!</a></div>
      </div>
    </div>

<!-- Google Analytics -->    
<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-8910661-8', 'auto');
  ga('send', 'pageview');

</script>
  </body>
</html>
function MyCtrl($scope) {
    $scope.list = data;
    $scope.description = description;
    $scope.includeLegacy = false;
    
    $scope.legacyFilter = function (profile) {
      return $scope.includeLegacy || profile.supportedByVisualStudio2013;
    };
}
/* Styles go here */

.verticalSpacing {
  margin-bottom: 0.5em;
}

.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
  background-color: lightblue;
}

.bad {
  color: red;
}

.good {
  color: green;
}

.pushdown {
  margin-top: 1em;
}
var description = "VS2015 Update 2";
var data = [{"fullName":".NETPortable,Version=v4.0,Profile=Profile1","profileName":"Profile1","supportedByVisualStudio2013":false,"supportedByVisualStudio2015":false,"supportsAsync":false,"supportsGenericVariance":false,"nugetTarget":"","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0,Profile=*","friendlyName":".NET Framework 4.0"},{"fullName":"Silverlight,Version=v4.0","friendlyName":"Silverlight 4.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"Silverlight,Version=v4.0,Profile=WindowsPhone*","friendlyName":"Windows Phone Silverlight 7.0"},{"fullName":"Xbox,Version=v4.0,Profile=*","friendlyName":"XBox 360"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile2","profileName":"Profile2","supportedByVisualStudio2013":false,"supportedByVisualStudio2015":false,"supportsAsync":false,"supportsGenericVariance":false,"nugetTarget":"portable-net4+sl40+netcore45+wp70","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0,Profile=*","friendlyName":".NET Framework 4.0"},{"fullName":"Silverlight,Version=v4.0","friendlyName":"Silverlight 4.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"Silverlight,Version=v4.0,Profile=WindowsPhone*","friendlyName":"Windows Phone Silverlight 7.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile3","profileName":"Profile3","supportedByVisualStudio2013":false,"supportedByVisualStudio2015":false,"supportsAsync":true,"supportsGenericVariance":false,"nugetTarget":"portable-net4+sl40","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0,Profile=*","friendlyName":".NET Framework 4.0"},{"fullName":"Silverlight,Version=v4.0","friendlyName":"Silverlight 4.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile4","profileName":"Profile4","supportedByVisualStudio2013":false,"supportedByVisualStudio2015":false,"supportsAsync":false,"supportsGenericVariance":false,"nugetTarget":"portable-net45+sl40+netcore45+wp70","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.5,Profile=*","friendlyName":".NET Framework 4.5"},{"fullName":"Silverlight,Version=v4.0","friendlyName":"Silverlight 4.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"Silverlight,Version=v4.0,Profile=WindowsPhone*","friendlyName":"Windows Phone Silverlight 7.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile5","profileName":"Profile5","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net4+netcore45","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0,Profile=*","friendlyName":".NET Framework 4.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile6","profileName":"Profile6","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net403+netcore45","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0.3,Profile=*","friendlyName":".NET Framework 4.0.3"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"}]},{"fullName":".NETPortable,Version=v4.5,Profile=Profile7","profileName":"Profile7","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net45+netcore45","netStandardGeneration":"netstandard1.1","dotnetGeneration":"dotnet5.2","frameworks":[{"fullName":".NETFramework,Version=v4.5,Profile=*","friendlyName":".NET Framework 4.5"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile14","profileName":"Profile14","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net4+sl50","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0,Profile=*","friendlyName":".NET Framework 4.0"},{"fullName":"Silverlight,Version=v5.0","friendlyName":"Silverlight 5.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile18","profileName":"Profile18","supportedByVisualStudio2013":false,"supportedByVisualStudio2015":false,"supportsAsync":true,"supportsGenericVariance":false,"nugetTarget":"portable-net403+sl40","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0.3,Profile=*","friendlyName":".NET Framework 4.0.3"},{"fullName":"Silverlight,Version=v4.0","friendlyName":"Silverlight 4.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile19","profileName":"Profile19","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net403+sl50","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0.3,Profile=*","friendlyName":".NET Framework 4.0.3"},{"fullName":"Silverlight,Version=v5.0","friendlyName":"Silverlight 5.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile23","profileName":"Profile23","supportedByVisualStudio2013":false,"supportedByVisualStudio2015":false,"supportsAsync":true,"supportsGenericVariance":false,"nugetTarget":"portable-net45+sl40","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.5,Profile=*","friendlyName":".NET Framework 4.5"},{"fullName":"Silverlight,Version=v4.0","friendlyName":"Silverlight 4.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile24","profileName":"Profile24","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net45+sl50","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.5,Profile=*","friendlyName":".NET Framework 4.5"},{"fullName":"Silverlight,Version=v5.0","friendlyName":"Silverlight 5.0"}]},{"fullName":".NETPortable,Version=v4.6,Profile=Profile31","profileName":"Profile31","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-netcore451+wp81","netStandardGeneration":"netstandard1.0","dotnetGeneration":"dotnet5.1","frameworks":[{"fullName":".NETCore,Version=v4.5.1,Profile=*","friendlyName":"Windows 8.1"},{"fullName":"WindowsPhone,Version=v8.1","friendlyName":"Windows Phone Silverlight 8.1"}]},{"fullName":".NETPortable,Version=v4.6,Profile=Profile32","profileName":"Profile32","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-netcore451+wpa81","netStandardGeneration":"netstandard1.2","dotnetGeneration":"dotnet5.3","frameworks":[{"fullName":".NETCore,Version=v4.5.1,Profile=*","friendlyName":"Windows 8.1"},{"fullName":"WindowsPhoneApp,Version=v8.1,Profile=*","friendlyName":"Windows Phone 8.1"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile36","profileName":"Profile36","supportedByVisualStudio2013":false,"supportedByVisualStudio2015":false,"supportsAsync":true,"supportsGenericVariance":false,"nugetTarget":"portable-net4+sl40+netcore45+wp8","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0,Profile=*","friendlyName":".NET Framework 4.0"},{"fullName":"Silverlight,Version=v4.0","friendlyName":"Silverlight 4.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"WindowsPhone,Version=v8.0","friendlyName":"Windows Phone Silverlight 8.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile37","profileName":"Profile37","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net4+sl50+netcore45","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0,Profile=*","friendlyName":".NET Framework 4.0"},{"fullName":"Silverlight,Version=v5.0","friendlyName":"Silverlight 5.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile41","profileName":"Profile41","supportedByVisualStudio2013":false,"supportedByVisualStudio2015":false,"supportsAsync":true,"supportsGenericVariance":false,"nugetTarget":"portable-net403+sl40+netcore45","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0.3,Profile=*","friendlyName":".NET Framework 4.0.3"},{"fullName":"Silverlight,Version=v4.0","friendlyName":"Silverlight 4.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile42","profileName":"Profile42","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net403+sl50+netcore45","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0.3,Profile=*","friendlyName":".NET Framework 4.0.3"},{"fullName":"Silverlight,Version=v5.0","friendlyName":"Silverlight 5.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"}]},{"fullName":".NETPortable,Version=v4.6,Profile=Profile44","profileName":"Profile44","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net451+netcore451","netStandardGeneration":"netstandard1.2","dotnetGeneration":"dotnet5.3","frameworks":[{"fullName":".NETFramework,Version=v4.5.1,Profile=*","friendlyName":".NET Framework 4.5.1"},{"fullName":".NETCore,Version=v4.5.1,Profile=*","friendlyName":"Windows 8.1"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile46","profileName":"Profile46","supportedByVisualStudio2013":false,"supportedByVisualStudio2015":false,"supportsAsync":true,"supportsGenericVariance":false,"nugetTarget":"portable-net45+sl40+netcore45","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.5,Profile=*","friendlyName":".NET Framework 4.5"},{"fullName":"Silverlight,Version=v4.0","friendlyName":"Silverlight 4.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile47","profileName":"Profile47","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net45+sl50+netcore45","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.5,Profile=*","friendlyName":".NET Framework 4.5"},{"fullName":"Silverlight,Version=v5.0","friendlyName":"Silverlight 5.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"}]},{"fullName":".NETPortable,Version=v4.5,Profile=Profile49","profileName":"Profile49","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net45+wp8","netStandardGeneration":"netstandard1.0","dotnetGeneration":"dotnet5.1","frameworks":[{"fullName":".NETFramework,Version=v4.5,Profile=*","friendlyName":".NET Framework 4.5"},{"fullName":"WindowsPhone,Version=v8.0","friendlyName":"Windows Phone Silverlight 8.0"}]},{"fullName":".NETPortable,Version=v4.5,Profile=Profile78","profileName":"Profile78","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net45+netcore45+wp8","netStandardGeneration":"netstandard1.0","dotnetGeneration":"dotnet5.1","frameworks":[{"fullName":".NETFramework,Version=v4.5,Profile=*","friendlyName":".NET Framework 4.5"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"WindowsPhone,Version=v8.0","friendlyName":"Windows Phone Silverlight 8.0"}]},{"fullName":".NETPortable,Version=v4.6,Profile=Profile84","profileName":"Profile84","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-wpa81+wp81","netStandardGeneration":"netstandard1.0","dotnetGeneration":"dotnet5.1","frameworks":[{"fullName":"WindowsPhoneApp,Version=v8.1,Profile=*","friendlyName":"Windows Phone 8.1"},{"fullName":"WindowsPhone,Version=v8.1","friendlyName":"Windows Phone Silverlight 8.1"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile88","profileName":"Profile88","supportedByVisualStudio2013":false,"supportedByVisualStudio2015":false,"supportsAsync":true,"supportsGenericVariance":false,"nugetTarget":"portable-net4+sl40+netcore45+wp71","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0,Profile=*","friendlyName":".NET Framework 4.0"},{"fullName":"Silverlight,Version=v4.0","friendlyName":"Silverlight 4.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"Silverlight,Version=v4.0,Profile=WindowsPhone7*","friendlyName":"Windows Phone Silverlight 7.5"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile92","profileName":"Profile92","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net4+netcore45+wpa81","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0,Profile=*","friendlyName":".NET Framework 4.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"WindowsPhoneApp,Version=v8.1,Profile=*","friendlyName":"Windows Phone 8.1"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile95","profileName":"Profile95","supportedByVisualStudio2013":false,"supportedByVisualStudio2015":false,"supportsAsync":false,"supportsGenericVariance":false,"nugetTarget":"portable-net403+sl40+netcore45+wp70","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0.3,Profile=*","friendlyName":".NET Framework 4.0.3"},{"fullName":"Silverlight,Version=v4.0","friendlyName":"Silverlight 4.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"Silverlight,Version=v4.0,Profile=WindowsPhone*","friendlyName":"Windows Phone Silverlight 7.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile96","profileName":"Profile96","supportedByVisualStudio2013":false,"supportedByVisualStudio2015":false,"supportsAsync":true,"supportsGenericVariance":false,"nugetTarget":"portable-net403+sl40+netcore45+wp71","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0.3,Profile=*","friendlyName":".NET Framework 4.0.3"},{"fullName":"Silverlight,Version=v4.0","friendlyName":"Silverlight 4.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"Silverlight,Version=v4.0,Profile=WindowsPhone7*","friendlyName":"Windows Phone Silverlight 7.5"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile102","profileName":"Profile102","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net403+netcore45+wpa81","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0.3,Profile=*","friendlyName":".NET Framework 4.0.3"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"WindowsPhoneApp,Version=v8.1,Profile=*","friendlyName":"Windows Phone 8.1"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile104","profileName":"Profile104","supportedByVisualStudio2013":false,"supportedByVisualStudio2015":false,"supportsAsync":true,"supportsGenericVariance":false,"nugetTarget":"portable-net45+sl40+netcore45+wp71","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.5,Profile=*","friendlyName":".NET Framework 4.5"},{"fullName":"Silverlight,Version=v4.0","friendlyName":"Silverlight 4.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"Silverlight,Version=v4.0,Profile=WindowsPhone7*","friendlyName":"Windows Phone Silverlight 7.5"}]},{"fullName":".NETPortable,Version=v4.5,Profile=Profile111","profileName":"Profile111","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net45+netcore45+wpa81","netStandardGeneration":"netstandard1.1","dotnetGeneration":"dotnet5.2","frameworks":[{"fullName":".NETFramework,Version=v4.5,Profile=*","friendlyName":".NET Framework 4.5"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"WindowsPhoneApp,Version=v8.1,Profile=*","friendlyName":"Windows Phone 8.1"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile131","profileName":"Profile131","supportedByVisualStudio2013":false,"supportedByVisualStudio2015":false,"supportsAsync":false,"supportsGenericVariance":false,"nugetTarget":"","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0.3,Profile=*","friendlyName":".NET Framework 4.0.3"},{"fullName":"Silverlight,Version=v4.0","friendlyName":"Silverlight 4.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"Silverlight,Version=v4.0,Profile=WindowsPhone*","friendlyName":"Windows Phone Silverlight 7.0"},{"fullName":"Xbox,Version=v4.0,Profile=*","friendlyName":"XBox 360"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile136","profileName":"Profile136","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net4+sl50+netcore45+wp8","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0,Profile=*","friendlyName":".NET Framework 4.0"},{"fullName":"Silverlight,Version=v5.0","friendlyName":"Silverlight 5.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"WindowsPhone,Version=v8.0","friendlyName":"Windows Phone Silverlight 8.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile143","profileName":"Profile143","supportedByVisualStudio2013":false,"supportedByVisualStudio2015":false,"supportsAsync":true,"supportsGenericVariance":false,"nugetTarget":"portable-net403+sl40+netcore45+wp8","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0.3,Profile=*","friendlyName":".NET Framework 4.0.3"},{"fullName":"Silverlight,Version=v4.0","friendlyName":"Silverlight 4.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"WindowsPhone,Version=v8.0","friendlyName":"Windows Phone Silverlight 8.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile147","profileName":"Profile147","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net403+sl50+netcore45+wp8","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0.3,Profile=*","friendlyName":".NET Framework 4.0.3"},{"fullName":"Silverlight,Version=v5.0","friendlyName":"Silverlight 5.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"WindowsPhone,Version=v8.0","friendlyName":"Windows Phone Silverlight 8.0"}]},{"fullName":".NETPortable,Version=v4.6,Profile=Profile151","profileName":"Profile151","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net451+netcore451+wpa81","netStandardGeneration":"netstandard1.2","dotnetGeneration":"dotnet5.3","frameworks":[{"fullName":".NETFramework,Version=v4.5.1,Profile=*","friendlyName":".NET Framework 4.5.1"},{"fullName":".NETCore,Version=v4.5.1,Profile=*","friendlyName":"Windows 8.1"},{"fullName":"WindowsPhoneApp,Version=v8.1,Profile=*","friendlyName":"Windows Phone 8.1"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile154","profileName":"Profile154","supportedByVisualStudio2013":false,"supportedByVisualStudio2015":false,"supportsAsync":true,"supportsGenericVariance":false,"nugetTarget":"portable-net45+sl40+netcore45+wp8","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.5,Profile=*","friendlyName":".NET Framework 4.5"},{"fullName":"Silverlight,Version=v4.0","friendlyName":"Silverlight 4.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"WindowsPhone,Version=v8.0","friendlyName":"Windows Phone Silverlight 8.0"}]},{"fullName":".NETPortable,Version=v4.6,Profile=Profile157","profileName":"Profile157","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-netcore451+wpa81+wp81","netStandardGeneration":"netstandard1.0","dotnetGeneration":"dotnet5.1","frameworks":[{"fullName":".NETCore,Version=v4.5.1,Profile=*","friendlyName":"Windows 8.1"},{"fullName":"WindowsPhoneApp,Version=v8.1,Profile=*","friendlyName":"Windows Phone 8.1"},{"fullName":"WindowsPhone,Version=v8.1","friendlyName":"Windows Phone Silverlight 8.1"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile158","profileName":"Profile158","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net45+sl50+netcore45+wp8","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.5,Profile=*","friendlyName":".NET Framework 4.5"},{"fullName":"Silverlight,Version=v5.0","friendlyName":"Silverlight 5.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"WindowsPhone,Version=v8.0","friendlyName":"Windows Phone Silverlight 8.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile225","profileName":"Profile225","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net4+sl50+netcore45+wpa81","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0,Profile=*","friendlyName":".NET Framework 4.0"},{"fullName":"Silverlight,Version=v5.0","friendlyName":"Silverlight 5.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"WindowsPhoneApp,Version=v8.1,Profile=*","friendlyName":"Windows Phone 8.1"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile240","profileName":"Profile240","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net403+sl50+netcore45+wpa81","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0.3,Profile=*","friendlyName":".NET Framework 4.0.3"},{"fullName":"Silverlight,Version=v5.0","friendlyName":"Silverlight 5.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"WindowsPhoneApp,Version=v8.1,Profile=*","friendlyName":"Windows Phone 8.1"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile255","profileName":"Profile255","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net45+sl50+netcore45+wpa81","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.5,Profile=*","friendlyName":".NET Framework 4.5"},{"fullName":"Silverlight,Version=v5.0","friendlyName":"Silverlight 5.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"WindowsPhoneApp,Version=v8.1,Profile=*","friendlyName":"Windows Phone 8.1"}]},{"fullName":".NETPortable,Version=v4.5,Profile=Profile259","profileName":"Profile259","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net45+netcore45+wpa81+wp8","netStandardGeneration":"netstandard1.0","dotnetGeneration":"dotnet5.1","frameworks":[{"fullName":".NETFramework,Version=v4.5,Profile=*","friendlyName":".NET Framework 4.5"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"WindowsPhoneApp,Version=v8.1,Profile=*","friendlyName":"Windows Phone 8.1"},{"fullName":"WindowsPhone,Version=v8.0","friendlyName":"Windows Phone Silverlight 8.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile328","profileName":"Profile328","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net4+sl50+netcore45+wpa81+wp8","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0,Profile=*","friendlyName":".NET Framework 4.0"},{"fullName":"Silverlight,Version=v5.0","friendlyName":"Silverlight 5.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"WindowsPhoneApp,Version=v8.1,Profile=*","friendlyName":"Windows Phone 8.1"},{"fullName":"WindowsPhone,Version=v8.0","friendlyName":"Windows Phone Silverlight 8.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile336","profileName":"Profile336","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net403+sl50+netcore45+wpa81+wp8","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.0.3,Profile=*","friendlyName":".NET Framework 4.0.3"},{"fullName":"Silverlight,Version=v5.0","friendlyName":"Silverlight 5.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"WindowsPhoneApp,Version=v8.1,Profile=*","friendlyName":"Windows Phone 8.1"},{"fullName":"WindowsPhone,Version=v8.0","friendlyName":"Windows Phone Silverlight 8.0"}]},{"fullName":".NETPortable,Version=v4.0,Profile=Profile344","profileName":"Profile344","supportedByVisualStudio2013":true,"supportedByVisualStudio2015":true,"supportsAsync":true,"supportsGenericVariance":true,"nugetTarget":"portable-net45+sl50+netcore45+wpa81+wp8","netStandardGeneration":null,"dotnetGeneration":null,"frameworks":[{"fullName":".NETFramework,Version=v4.5,Profile=*","friendlyName":".NET Framework 4.5"},{"fullName":"Silverlight,Version=v5.0","friendlyName":"Silverlight 5.0"},{"fullName":".NETCore,Version=v4.5,Profile=*","friendlyName":"Windows 8.0"},{"fullName":"WindowsPhoneApp,Version=v8.1,Profile=*","friendlyName":"Windows Phone 8.1"},{"fullName":"WindowsPhone,Version=v8.0","friendlyName":"Windows Phone Silverlight 8.0"}]}];