|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <AssemblyName>CSharpScriptSerializer</AssemblyName> |
| 5 | + <PackageId>CSharpScriptSerializer</PackageId> |
| 6 | + <AssemblyTitle>CSharpScriptSerializer</AssemblyTitle> |
| 7 | + <Title>CSharpScriptSerializer</Title> |
| 8 | + <VersionPrefix>1.2.0</VersionPrefix> |
| 9 | + <TargetFrameworks>netstandard1.5;net46</TargetFrameworks> |
| 10 | + <NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.5' ">1.6.1</NetStandardImplicitPackageVersion> |
| 11 | + <PackageTargetFallback Condition=" '$(TargetFramework)' == 'netstandard1.5' "> |
| 12 | + $(PackageTargetFallback);portable-net45+win8 |
| 13 | + </PackageTargetFallback> |
| 14 | + <TreatWarningsAsErrors>True</TreatWarningsAsErrors> |
| 15 | + <GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> |
| 16 | + <Description>Serialize to C# scripts</Description> |
| 17 | + <Authors>Andriy Svyryd</Authors> |
| 18 | + <PackageTags>Roslyn;CSharp;C#;CSX;Script;Serialization</PackageTags> |
| 19 | + <PackageReleaseNotes>Version 1.2.0 |
| 20 | +* Update to Roslyn V2 |
| 21 | +Version 1.1.2 |
| 22 | +* Increase max length for string literals |
| 23 | +Version 1.1.1 |
| 24 | +* Use verbatim literals for multi-line strings |
| 25 | +* Remove redundant flags enum values |
| 26 | +Version 1.1.0 |
| 27 | +* Enable customizing the property serialization condition in PropertyCSScriptSerializer |
| 28 | +Version 1.0.0 |
| 29 | +* Enable customizing the default values in PropertyCSScriptSerializer |
| 30 | +* Change ICSScriptSerializable.GetSerializer() to return ICSScriptSerializer |
| 31 | +* Fix parameters not being used in DeserializeAsync |
| 32 | + |
| 33 | +Version 1.0.0-alpha1 |
| 34 | +* Initial release</PackageReleaseNotes> |
| 35 | + <PackageProjectUrl>https://github.com/AndriySvyryd/CSharpScriptSerializer</PackageProjectUrl> |
| 36 | + <PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> |
| 37 | + <RepositoryType>git</RepositoryType> |
| 38 | + <RepositoryUrl>https://github.com/AndriySvyryd/CSharpScriptSerializer.git</RepositoryUrl> |
| 39 | + <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
| 40 | + <IncludeSymbols>True</IncludeSymbols> |
| 41 | + <IncludeSource>True</IncludeSource> |
| 42 | + </PropertyGroup> |
| 43 | + |
| 44 | + <ItemGroup> |
| 45 | + <PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="2.0.0" /> |
| 46 | + <PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="2.0.0" /> |
| 47 | + </ItemGroup> |
| 48 | + |
| 49 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net46' "> |
| 50 | + <Reference Include="System.Runtime" /> |
| 51 | + <Reference Include="System" /> |
| 52 | + <Reference Include="Microsoft.CSharp" /> |
| 53 | + </ItemGroup> |
| 54 | + |
| 55 | +</Project> |
0 commit comments