|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 |
|
3 | 3 | <PropertyGroup>
|
4 |
| - <TargetFrameworks>net45;netstandard1.1;netstandard1.3;portable45-net45+win8</TargetFrameworks> |
5 |
| - <!--<TargetFrameworks>net45;netstandard1.1;netstandard1.3;portable45-net45+win8;sl5</TargetFrameworks>--> |
| 4 | + <TargetFrameworks>net45;netstandard1.1;netstandard1.3</TargetFrameworks> |
6 | 5 | <AssemblyName>ServiceStack.Text</AssemblyName>
|
7 | 6 | <PackageId>ServiceStack.Text</PackageId>
|
8 | 7 | <NetStandardImplicitPackageVersion>1.6.0</NetStandardImplicitPackageVersion>
|
|
25 | 24 | <DebugType>portable</DebugType>
|
26 | 25 | </PropertyGroup>
|
27 | 26 |
|
28 |
| - <ItemGroup> |
29 |
| - <PackageReference Include="MSBuild.Sdk.Extras" Version="1.0.1" PrivateAssets="all" /> |
30 |
| - </ItemGroup> |
31 |
| - |
32 | 27 | <PropertyGroup Condition=" '$(TargetFramework)' == 'net45' ">
|
33 | 28 | <DefineConstants>$(DefineConstants);NET45</DefineConstants>
|
34 | 29 | </PropertyGroup>
|
|
79 | 74 | <PackageReference Include="System.Reflection.TypeExtensions" Version="4.1.0" />
|
80 | 75 | </ItemGroup>
|
81 | 76 |
|
82 |
| - <PropertyGroup Condition=" '$(TargetFramework)' == 'portable45-net45+win8' "> |
83 |
| - <DefineConstants>$(DefineConstants);PCL;PORTABLE7</DefineConstants> |
84 |
| - <TargetFrameworkIdentifier>.NETPortable</TargetFrameworkIdentifier> |
85 |
| - <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> |
86 |
| - <TargetFrameworkProfile>Profile7</TargetFrameworkProfile> |
87 |
| - <LanguageTargets>$(MSBuildProgramFiles32)\MSBuild\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets</LanguageTargets> |
88 |
| - </PropertyGroup> |
89 |
| - |
90 |
| - <ItemGroup Condition=" '$(TargetFramework)' == 'portable45-net45+win8' "> |
91 |
| - <Reference Include="System" /> |
92 |
| - <Reference Include="System.IO" /> |
93 |
| - <Reference Include="System.IO.Compression" /> |
94 |
| - <Reference Include="System.Core" /> |
95 |
| - <Reference Include="System.Linq" /> |
96 |
| - <Reference Include="System.Linq.Expressions" /> |
97 |
| - <Reference Include="System.Net" /> |
98 |
| - <Reference Include="System.Net.Requests" /> |
99 |
| - <Reference Include="System.Net.Primitives" /> |
100 |
| - <Reference Include="System.Globalization" /> |
101 |
| - <Reference Include="System.Runtime" /> |
102 |
| - <Reference Include="System.Runtime.Extensions" /> |
103 |
| - <Reference Include="System.Runtime.Serialization" /> |
104 |
| - <Reference Include="System.Runtime.Serialization.Primitives" /> |
105 |
| - <Reference Include="System.Runtime.Serialization.Xml" /> |
106 |
| - <Reference Include="System.Runtime.InteropServices" /> |
107 |
| - <Reference Include="System.Reflection" /> |
108 |
| - <Reference Include="System.Reflection.Extensions" /> |
109 |
| - <Reference Include="System.Threading" /> |
110 |
| - <Reference Include="System.Threading.Tasks" /> |
111 |
| - <Reference Include="System.Collections" /> |
112 |
| - <Reference Include="System.Collections.Concurrent" /> |
113 |
| - <Reference Include="System.Text.Encoding" /> |
114 |
| - <Reference Include="System.Text.RegularExpressions" /> |
115 |
| - <Reference Include="System.Xml" /> |
116 |
| - <Reference Include="System.Xml.ReaderWriter" /> |
117 |
| - <Reference Include="System.Dynamic.Runtime" /> |
118 |
| - <Reference Include="Microsoft.CSharp" /> |
119 |
| - </ItemGroup> |
120 |
| - |
121 |
| - <!-- SL5 SDK https://www.microsoft.com/en-us/download/confirmation.aspx?id=28359 --> |
122 |
| - <PropertyGroup Condition=" '$(TargetFramework)' == 'sl5' "> |
123 |
| - <DefineConstants>$(DefineConstants);SL5;NO_DYNAMIC</DefineConstants> |
124 |
| - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> |
125 |
| - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> |
126 |
| - <!--<OutputPath>Release\bin\sl5</OutputPath>--> |
127 |
| - <TargetFrameworkDirectory>$(MSBuildProgramFiles32)\Reference Assemblies\Microsoft\Framework\Silverlight\v5.0\</TargetFrameworkDirectory> |
128 |
| - <TargetFrameworkSDKDirectory>$(MSBuildProgramFiles32)\Microsoft SDKs\Silverlight\v5.0\Libraries\Client\</TargetFrameworkSDKDirectory> |
129 |
| - <SilverlightRuntimeVersion>5.1.50905.0</SilverlightRuntimeVersion> |
130 |
| - </PropertyGroup> |
131 |
| - |
132 |
| - <!--<PropertyGroup Condition=" '$(Configuration)' == 'Debug' and '$(TargetFramework)' == 'sl5' "> |
133 |
| - <OutputPath>Debug\bin\sl5</OutputPath> |
134 |
| - </PropertyGroup>--> |
135 |
| - |
136 |
| - <ItemGroup Condition=" '$(TargetFramework)' == 'sl5' "> |
137 |
| - <Reference Include="System" /> |
138 |
| - <Reference Include="System.IO" /> |
139 |
| - <Reference Include="System.IO.Compression" /> |
140 |
| - <Reference Include="System.Core" /> |
141 |
| - <Reference Include="System.Linq" /> |
142 |
| - <Reference Include="System.Linq.Expressions" /> |
143 |
| - <Reference Include="System.Net" /> |
144 |
| - <Reference Include="System.Net.Requests" /> |
145 |
| - <Reference Include="System.Net.Primitives" /> |
146 |
| - <Reference Include="System.Globalization" /> |
147 |
| - <Reference Include="System.Runtime" /> |
148 |
| - <Reference Include="System.Runtime.Extensions" /> |
149 |
| - <Reference Include="System.Runtime.Serialization" /> |
150 |
| - <Reference Include="System.Runtime.Serialization.Primitives" /> |
151 |
| - <Reference Include="System.Runtime.Serialization.Xml" /> |
152 |
| - <Reference Include="System.Runtime.InteropServices" /> |
153 |
| - <Reference Include="System.Reflection" /> |
154 |
| - <Reference Include="System.Reflection.Extensions" /> |
155 |
| - <Reference Include="System.Threading" /> |
156 |
| - <Reference Include="System.Threading.Tasks" /> |
157 |
| - <Reference Include="System.Collections" /> |
158 |
| - <Reference Include="System.Collections.Concurrent" /> |
159 |
| - <Reference Include="System.Text.Encoding" /> |
160 |
| - <Reference Include="System.Text.RegularExpressions" /> |
161 |
| - <Reference Include="System.Xml" /> |
162 |
| - <Reference Include="System.Xml.ReaderWriter" /> |
163 |
| - <Reference Include="System.Dynamic.Runtime" /> |
164 |
| - <Reference Include="Microsoft.CSharp" /> |
165 |
| - <Reference Include="System.Dynamic" /> |
166 |
| - <Reference Include="System.Windows" /> |
167 |
| - </ItemGroup> |
168 |
| - |
169 |
| - <Import Project="$(MSBuildSDKExtrasTargets)" Condition="Exists('$(MSBuildSDKExtrasTargets)')" /> |
170 |
| - <!--<Import Project="$(MSBuildProgramFiles32)\MSBuild\Microsoft\Silverlight\v5.0\Microsoft.Silverlight.CSharp.targets" />--> |
171 | 77 | </Project>
|
0 commit comments