-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
8 changed files
with
101 additions
and
137 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<AssemblyName>CSharpScriptSerializer</AssemblyName> | ||
<PackageId>CSharpScriptSerializer</PackageId> | ||
<AssemblyTitle>CSharpScriptSerializer</AssemblyTitle> | ||
<Title>CSharpScriptSerializer</Title> | ||
<VersionPrefix>1.2.0</VersionPrefix> | ||
<TargetFrameworks>netstandard1.5;net46</TargetFrameworks> | ||
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.5' ">1.6.1</NetStandardImplicitPackageVersion> | ||
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netstandard1.5' "> | ||
$(PackageTargetFallback);portable-net45+win8 | ||
</PackageTargetFallback> | ||
<TreatWarningsAsErrors>True</TreatWarningsAsErrors> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
<Description>Serialize to C# scripts</Description> | ||
<Authors>Andriy Svyryd</Authors> | ||
<PackageTags>Roslyn;CSharp;C#;CSX;Script;Serialization</PackageTags> | ||
<PackageReleaseNotes>Version 1.2.0 | ||
* Update to Roslyn V2 | ||
Version 1.1.2 | ||
* Increase max length for string literals | ||
Version 1.1.1 | ||
* Use verbatim literals for multi-line strings | ||
* Remove redundant flags enum values | ||
Version 1.1.0 | ||
* Enable customizing the property serialization condition in PropertyCSScriptSerializer | ||
Version 1.0.0 | ||
* Enable customizing the default values in PropertyCSScriptSerializer | ||
* Change ICSScriptSerializable.GetSerializer() to return ICSScriptSerializer | ||
* Fix parameters not being used in DeserializeAsync | ||
|
||
Version 1.0.0-alpha1 | ||
* Initial release</PackageReleaseNotes> | ||
<PackageProjectUrl>https://github.com/AndriySvyryd/CSharpScriptSerializer</PackageProjectUrl> | ||
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/AndriySvyryd/CSharpScriptSerializer.git</RepositoryUrl> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<IncludeSymbols>True</IncludeSymbols> | ||
<IncludeSource>True</IncludeSource> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="2.0.0" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="2.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'net46' "> | ||
<Reference Include="System.Runtime" /> | ||
<Reference Include="System" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
41 changes: 41 additions & 0 deletions
41
test/CSharpScriptSerializer.Tests/CSharpScriptSerializer.Tests.csproj
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<AssemblyName>CSharpScriptSerializer.Tests</AssemblyName> | ||
<PackageId>CSharpScriptSerializer.Tests</PackageId> | ||
<VersionPrefix>1.2.0</VersionPrefix> | ||
<TargetFrameworks>netcoreapp1.1;net46</TargetFrameworks> | ||
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.1' ">1.1.1</RuntimeFrameworkVersion> | ||
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netcoreapp1.1' "> | ||
$(PackageTargetFallback);portable-net45+win8 | ||
</PackageTargetFallback> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\CSharpScriptSerializer\CSharpScriptSerializer.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" /> | ||
<PackageReference Include="xunit" Version="2.2.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.1' "> | ||
<PackageReference Include="Microsoft.CSharp" Version="4.3.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'net46' "> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="System.Runtime" /> | ||
<Reference Include="System" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | ||
</ItemGroup> | ||
|
||
</Project> |
22 changes: 0 additions & 22 deletions
22
test/CSharpScriptSerializer.Tests/CSharpScriptSerializer.Tests.xproj
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.