修改错误的名字空间

This commit is contained in:
falcon 2019-12-31 13:52:29 +08:00
parent 705194cdad
commit c10a31e0af
7 changed files with 7 additions and 7 deletions

View File

@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageProjectUrl>http://39.105.71.191/Falcon/Falcon.Extend</PackageProjectUrl>
<RepositoryUrl>http://39.105.71.191/Falcon/Falcon.Extend</RepositoryUrl>

View File

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace Faclon.Extend
namespace Falcon.Extend
{
/// <summary>
/// 对象复制选项

View File

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace Faclon.Extend
namespace Falcon.Extend
{
/// <summary>
/// Object扩展

View File

@ -1,4 +1,4 @@
namespace Faclon.Extend
namespace Falcon.Extend
{
/// <summary>
/// 字符串处理扩展

View File

@ -1,10 +1,10 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Faclon.Extend;
using Falcon.Extend;
using System;
using System.Collections.Generic;
using System.Text;
namespace Faclon.Extend.Tests
namespace Falcon.Extend.Tests
{
[TestClass()]
public class ObjectExtendTests

View File

@ -1,6 +1,6 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Faclon.Extend.Tests
namespace Falcon.Extend.Tests
{
[TestClass()]
public class StringExtendTests