Skip to content

Commit 14a129c

Browse files
Modificado namespace padrao
1 parent a140880 commit 14a129c

33 files changed

+35
-126
lines changed

.vs/JsonFx.Json/v16/.suo

-111 KB
Binary file not shown.
-1.94 KB
Binary file not shown.
-24 Bytes
Binary file not shown.

About.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ THE SOFTWARE.
3131
using System;
3232
using System.Reflection;
3333

34-
namespace JsonFx
34+
namespace JsonCLR
3535
{
3636
/// <summary>
37-
/// JsonFx metadata
37+
/// JsonCLR metadata
3838
/// </summary>
3939
public sealed class About
4040
{

DataReaderProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ THE SOFTWARE.
3131
using System;
3232
using System.Collections.Generic;
3333

34-
namespace JsonFx.Json
34+
namespace JsonCLR.Json
3535
{
3636
public interface IDataReaderProvider
3737
{

DataWriterProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ THE SOFTWARE.
3232
using System.Collections.Generic;
3333
using System.IO;
3434

35-
namespace JsonFx.Json
35+
namespace JsonCLR.Json
3636
{
3737
public interface IDataWriterProvider
3838
{

EcmaScriptIdentifier.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ THE SOFTWARE.
3030

3131
using System;
3232

33-
namespace JsonFx.Json
33+
namespace JsonCLR.Json
3434
{
3535
/// <summary>
3636
/// Represents an ECMAScript identifier for serialization.

EcmaScriptWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ THE SOFTWARE.
3434
using System.Text;
3535
using System.Text.RegularExpressions;
3636

37-
namespace JsonFx.Json
37+
namespace JsonCLR.Json
3838
{
3939
/// <summary>
4040
/// Writes data as full ECMAScript objects, rather than the limited set of JSON objects.

IDataReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ THE SOFTWARE.
3232
using System.IO;
3333
using System.Text;
3434

35-
namespace JsonFx.Json
35+
namespace JsonCLR.Json
3636
{
3737
/// <summary>
3838
/// A common interface for data deserializers

IDataWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ THE SOFTWARE.
3232
using System.IO;
3333
using System.Text;
3434

35-
namespace JsonFx.Json
35+
namespace JsonCLR.Json
3636
{
3737
/// <summary>
3838
/// A common interface for data serializers

IJsonSerializable.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ THE SOFTWARE.
3030

3131
using System;
3232

33-
namespace JsonFx.Json
33+
namespace JsonCLR.Json
3434
{
3535
/// <summary>
3636
/// Allows classes to control their own JSON serialization

JsonFx.Json.csproj renamed to JsonCLR.csproj

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<ProjectGuid>{ABA23F14-7E47-43FE-A3E7-1FF97840C3FB}</ProjectGuid>
99
<OutputType>Library</OutputType>
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
11-
<RootNamespace>JsonFx</RootNamespace>
12-
<AssemblyName>JsonFx.Json</AssemblyName>
11+
<RootNamespace>JsonCLR</RootNamespace>
12+
<AssemblyName>JsonCLR</AssemblyName>
1313
<SccProjectName>
1414
</SccProjectName>
1515
<SccLocalPath>
@@ -33,7 +33,7 @@
3333
<ErrorReport>prompt</ErrorReport>
3434
<WarningLevel>4</WarningLevel>
3535
<UseVSHostingProcess>false</UseVSHostingProcess>
36-
<DocumentationFile>bin\Debug\JsonFx.Json.XML</DocumentationFile>
36+
<DocumentationFile>bin\Debug\JsonCLR.xml</DocumentationFile>
3737
<NoWarn>1570,1571,1572,1573,1591,1592</NoWarn>
3838
</PropertyGroup>
3939
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
@@ -44,14 +44,15 @@
4444
<ErrorReport>prompt</ErrorReport>
4545
<WarningLevel>4</WarningLevel>
4646
<UseVSHostingProcess>false</UseVSHostingProcess>
47-
<DocumentationFile>bin\Release\JsonFx.Json.XML</DocumentationFile>
47+
<DocumentationFile>bin\Release\JsonCLR.xml</DocumentationFile>
4848
<NoWarn>1570,1571,1572,1573,1591,1592</NoWarn>
4949
</PropertyGroup>
5050
<PropertyGroup>
5151
<SignAssembly>true</SignAssembly>
5252
</PropertyGroup>
5353
<PropertyGroup>
54-
<AssemblyOriginatorKeyFile>scga.pfx</AssemblyOriginatorKeyFile>
54+
<AssemblyOriginatorKeyFile>
55+
</AssemblyOriginatorKeyFile>
5556
</PropertyGroup>
5657
<ItemGroup>
5758
<Reference Include="System" />
@@ -84,17 +85,8 @@
8485
<Compile Include="XmlDataWriter.cs" />
8586
</ItemGroup>
8687
<ItemGroup>
87-
<Content Include="License.txt">
88-
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
89-
</Content>
90-
<Content Include="Readme.txt">
91-
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
92-
</Content>
9388
<EmbeddedResource Include="Scripts\json2.js" />
9489
</ItemGroup>
95-
<ItemGroup>
96-
<None Include="scga.pfx" />
97-
</ItemGroup>
9890
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
9991
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
10092
Other similar extension points exist, see Microsoft.Common.targets.

JsonFx.Json.sln renamed to JsonCLR.sln

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 16
44
VisualStudioVersion = 16.0.30907.101
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JsonFx.Json", "JsonFx.Json.csproj", "{ABA23F14-7E47-43FE-A3E7-1FF97840C3FB}"
7-
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleApp3", "C:\Users\marcus.costa\source\repos\ConsoleApp3\ConsoleApp3.csproj", "{58FF88B4-6D14-457D-B8E3-4B94EDC413B6}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JsonCLR", "JsonCLR.csproj", "{ABA23F14-7E47-43FE-A3E7-1FF97840C3FB}"
97
EndProject
108
Global
119
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -17,10 +15,6 @@ Global
1715
{ABA23F14-7E47-43FE-A3E7-1FF97840C3FB}.Debug|Any CPU.Build.0 = Debug|Any CPU
1816
{ABA23F14-7E47-43FE-A3E7-1FF97840C3FB}.Release|Any CPU.ActiveCfg = Release|Any CPU
1917
{ABA23F14-7E47-43FE-A3E7-1FF97840C3FB}.Release|Any CPU.Build.0 = Release|Any CPU
20-
{58FF88B4-6D14-457D-B8E3-4B94EDC413B6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21-
{58FF88B4-6D14-457D-B8E3-4B94EDC413B6}.Debug|Any CPU.Build.0 = Debug|Any CPU
22-
{58FF88B4-6D14-457D-B8E3-4B94EDC413B6}.Release|Any CPU.ActiveCfg = Release|Any CPU
23-
{58FF88B4-6D14-457D-B8E3-4B94EDC413B6}.Release|Any CPU.Build.0 = Release|Any CPU
2418
EndGlobalSection
2519
GlobalSection(SolutionProperties) = preSolution
2620
HideSolutionNode = FALSE

JsonDataReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ THE SOFTWARE.
3232
using System.IO;
3333
using System.Text;
3434

35-
namespace JsonFx.Json
35+
namespace JsonCLR.Json
3636
{
3737
/// <summary>
3838
/// An <see cref="IDataReader"/> adapter for <see cref="JsonDataReader"/>

JsonDataWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ THE SOFTWARE.
3232
using System.IO;
3333
using System.Text;
3434

35-
namespace JsonFx.Json
35+
namespace JsonCLR.Json
3636
{
3737
/// <summary>
3838
/// An <see cref="IDataWriter"/> adapter for <see cref="JsonWriter"/>

JsonIgnoreAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ THE SOFTWARE.
3434
using System.Xml.Serialization;
3535
#endif
3636

37-
namespace JsonFx.Json
37+
namespace JsonCLR.Json
3838
{
3939
/// <summary>
4040
/// Designates a property or field to not be serialized.

JsonNameAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ THE SOFTWARE.
3131
using System;
3232
using System.Reflection;
3333

34-
namespace JsonFx.Json
34+
namespace JsonCLR.Json
3535
{
3636
/// <summary>
3737
/// Specifies the naming to use for a property or field when serializing

JsonReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ THE SOFTWARE.
3636
using System.Reflection;
3737
using System.Text;
3838

39-
namespace JsonFx.Json
39+
namespace JsonCLR.Json
4040
{
4141
/// <summary>
4242
/// Reader for consuming JSON data

JsonReaderSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ THE SOFTWARE.
3030

3131
using System;
3232

33-
namespace JsonFx.Json
33+
namespace JsonCLR.Json
3434
{
3535
/// <summary>
3636
/// Controls the deserialization settings for JsonReader

JsonSerializationException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ THE SOFTWARE.
3030

3131
using System;
3232

33-
namespace JsonFx.Json
33+
namespace JsonCLR.Json
3434
{
3535
public class JsonSerializationException : InvalidOperationException
3636
{

JsonSpecifiedPropertyAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ THE SOFTWARE.
3131
using System;
3232
using System.Reflection;
3333

34-
namespace JsonFx.Json
34+
namespace JsonCLR.Json
3535
{
3636
/// <summary>
3737
/// Specifies the name of the property which specifies if member should be serialized.

JsonToken.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ THE SOFTWARE.
3030

3131
using System;
3232

33-
namespace JsonFx.Json
33+
namespace JsonCLR.Json
3434
{
3535
/// <summary>
3636
/// Parse Tokens

JsonWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ THE SOFTWARE.
3737
using System.Reflection;
3838
using System.Text;
3939

40-
namespace JsonFx.Json
40+
namespace JsonCLR.Json
4141
{
4242
/// <summary>
4343
/// Writer for producing JSON data

JsonWriterSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ THE SOFTWARE.
3131
using System;
3232
using System.IO;
3333

34-
namespace JsonFx.Json
34+
namespace JsonCLR.Json
3535
{
3636
/// <summary>
3737
/// Represents a proxy method for serialization of types which do not implement IJsonSerializable

License.txt

Lines changed: 0 additions & 23 deletions
This file was deleted.

Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ THE SOFTWARE.
3232
using System.Runtime.CompilerServices;
3333
using System.Runtime.InteropServices;
3434

35-
[assembly: AssemblyTitle("JsonFx.Json")]
36-
[assembly: AssemblyDescription("JsonFx.NET JSON Serialization")]
37-
[assembly: AssemblyProduct("JsonFx.NET")]
35+
[assembly: AssemblyTitle("JsonCLR.Json")]
36+
[assembly: AssemblyDescription("JsonCLR.NET JSON Serialization")]
37+
[assembly: AssemblyProduct("JsonCLR.NET")]
3838
[assembly: AssemblyCopyright("Copyright © 2006-2009 Stephen M. McKamey. All rights reserved.")]
3939
[assembly: AssemblyCompany("http://jsonfx.net")]
4040
#if DEBUG

Readme.txt

Lines changed: 0 additions & 54 deletions
This file was deleted.

TypeCoercionUtility.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ THE SOFTWARE.
3636
using System.Linq;
3737
using System.Reflection;
3838

39-
namespace JsonFx.Json
39+
namespace JsonCLR.Json
4040
{
4141
/// <summary>
4242
/// Utility for forcing conversion between types

XmlDataReader.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ THE SOFTWARE.
3434
using System.Xml;
3535
using System.Xml.Serialization;
3636

37-
using JsonFx.Json;
37+
using JsonCLR.Json;
3838

39-
namespace JsonFx.Xml
39+
namespace JsonCLR.Xml
4040
{
4141
/// <summary>
4242
/// An <see cref="IDataReader"/> adapter for <see cref="XmlReader"/>

XmlDataWriter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ THE SOFTWARE.
3535
using System.Xml;
3636
using System.Xml.Serialization;
3737

38-
using JsonFx.Json;
38+
using JsonCLR.Json;
3939

40-
namespace JsonFx.Xml
40+
namespace JsonCLR.Xml
4141
{
4242
/// <summary>
4343
/// An <see cref="IDataWriter"/> adapter for <see cref="XmlWriter"/>
Binary file not shown.
Binary file not shown.

scga.pfx

-1.72 KB
Binary file not shown.

0 commit comments

Comments
 (0)