Skip to content

Commit

Permalink
整理代码,修改解决方案名称dp2Command.Service
Browse files Browse the repository at this point in the history
  • Loading branch information
renyh1013 committed Feb 17, 2016
1 parent 3740a30 commit a7a5032
Show file tree
Hide file tree
Showing 21 changed files with 25 additions and 28 deletions.
4 changes: 2 additions & 2 deletions WebWeiXinToGZH/WebWeiXinToGZH.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@
<Project>{1b74d69a-530f-4275-845b-8ca6d1463bdd}</Project>
<Name>DigitalPlatform.LibraryRestClient</Name>
</ProjectReference>
<ProjectReference Include="..\dp2Command.Server\dp2Command.Server.csproj">
<ProjectReference Include="..\dp2Command.Server\dp2Command.Service.csproj">
<Project>{a77b8a4a-3ae8-4bd7-b09a-bf8d92fe802d}</Project>
<Name>dp2Command.Server</Name>
<Name>dp2Command.Service</Name>
</ProjectReference>
</ItemGroup>
<PropertyGroup>
Expand Down
1 change: 0 additions & 1 deletion WebWeiXinToGZH/WeiXinApi.aspx.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using dp2weixin;
using dp2Command.Server;
using System;
using System.Collections.Generic;
using System.Linq;
Expand Down
2 changes: 1 addition & 1 deletion dp2-v3.sln
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DigitalPlatform.IO", "Digit
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DigitalPlatform.LibraryRestClient", "DigitalPlatform.LibraryRestClient\DigitalPlatform.LibraryRestClient.csproj", "{1B74D69A-530F-4275-845B-8CA6D1463BDD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dp2Command.Server", "dp2Command.Server\dp2Command.Server.csproj", "{A77B8A4A-3AE8-4BD7-B09A-BF8D92FE802D}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dp2Command.Service", "dp2Command.Server\dp2Command.Service.csproj", "{A77B8A4A-3AE8-4BD7-B09A-BF8D92FE802D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dp2CommandConsole", "dp2CommandConsole\dp2CommandConsole.csproj", "{AA0ADD05-854B-43F9-8C57-9A8768C7A564}"
EndProject
Expand Down
2 changes: 1 addition & 1 deletion dp2Command.Server/Command/BaseCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Text;
using System.Threading.Tasks;

namespace dp2Command.Server
namespace dp2Command.Service
{
public class BaseCommand
{
Expand Down
2 changes: 1 addition & 1 deletion dp2Command.Server/Command/BindingCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Text;
using System.Threading.Tasks;

namespace dp2Command.Server.Command
namespace dp2Command.Service
{
public class BindingCommand:BaseCommand
{
Expand Down
5 changes: 2 additions & 3 deletions dp2Command.Server/Command/CommandContainer.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
using dp2Command.Server.Command;
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace dp2Command.Server
namespace dp2Command.Service
{
public class CommandContainer
{
Expand Down
2 changes: 1 addition & 1 deletion dp2Command.Server/Command/SearchCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Text;
using System.Threading.Tasks;

namespace dp2Command.Server
namespace dp2Command.Service
{
public class SearchCommand:BaseCommand
{
Expand Down
2 changes: 1 addition & 1 deletion dp2Command.Server/Command/dp2CommandUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Linq;
using System.Web;

namespace dp2Command.Server
namespace dp2Command.Service
{
public class dp2CommandUtility
{
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion dp2Command.Server/dp2CommandService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
using System.Threading.Tasks;
using System.Xml;

namespace dp2Command.Server
namespace dp2Command.Service
{
public class dp2CommandService
{
Expand Down
3 changes: 1 addition & 2 deletions dp2CommandConsole/Instance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
using DigitalPlatform.Text;
using System.Net;
using DigitalPlatform.IO;
using dp2Command.Server;
using dp2Command.Server.Command;
using dp2Command.Service;
using DigitalPlatform.LibraryRestClient;
using System.Xml;
using DigitalPlatform.Xml;
Expand Down
4 changes: 2 additions & 2 deletions dp2CommandConsole/dp2CommandConsole.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@
<Project>{e6489e89-1349-4ee7-a00b-ac96b9912587}</Project>
<Name>DigitalPlatform.Xml</Name>
</ProjectReference>
<ProjectReference Include="..\dp2Command.Server\dp2Command.Server.csproj">
<ProjectReference Include="..\dp2Command.Server\dp2Command.Service.csproj">
<Project>{a77b8a4a-3ae8-4bd7-b09a-bf8d92fe802d}</Project>
<Name>dp2Command.Server</Name>
<Name>dp2Command.Service</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
2 changes: 1 addition & 1 deletion dp2weixin.service/dp2MessageHandler/dp2MessageContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
using System.Runtime.Remoting.Messaging;
using System.Text;
using Senparc.Weixin.MP.Entities;
using dp2Command.Server;
using dp2Command.Service;

namespace dp2weixin
{
Expand Down
4 changes: 2 additions & 2 deletions dp2weixin.service/dp2MessageHandler/dp2MessageHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
using System.Diagnostics;
using DigitalPlatform;
using DigitalPlatform.Text;
using dp2Command.Server;
using dp2Command.Server.Command;
using dp2Command.Service;
using DigitalPlatform.LibraryRestClient;
using dp2Command.Service;

namespace dp2weixin
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using Senparc.Weixin.MP.Helpers;
using Senparc.Weixin.MP.MessageHandlers;
using Senparc.Weixin.Context;
using dp2Command.Server;
using dp2Command.Service;
namespace dp2weixin
{
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion dp2weixin/Global.asax.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//using dp2weixin.dp2RestfulApi;
using System.Web.Configuration;
using DigitalPlatform.IO;
using dp2Command.Server;
using dp2Command.Service;

namespace dp2weixin
{
Expand Down
2 changes: 1 addition & 1 deletion dp2weixin/Index.aspx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Senparc.Weixin.MP;
using Senparc.Weixin.MP.Entities.Request;
using DigitalPlatform.LibraryRestClient;
using dp2Command.Server;
using dp2Command.Service;
namespace dp2weixin
{
public partial class Index : System.Web.UI.Page
Expand Down
4 changes: 2 additions & 2 deletions dp2weixin/dp2weixin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@
<Project>{e6489e89-1349-4ee7-a00b-ac96b9912587}</Project>
<Name>DigitalPlatform.Xml</Name>
</ProjectReference>
<ProjectReference Include="..\dp2Command.Server\dp2Command.Server.csproj">
<ProjectReference Include="..\dp2Command.Server\dp2Command.Service.csproj">
<Project>{a77b8a4a-3ae8-4bd7-b09a-bf8d92fe802d}</Project>
<Name>dp2Command.Server</Name>
<Name>dp2Command.Service</Name>
</ProjectReference>
<ProjectReference Include="..\dp2weixin.service\dp2weixin.service.csproj">
<Project>{8085b933-f69e-4a89-97eb-0a61d115c69f}</Project>
Expand Down
2 changes: 1 addition & 1 deletion dp2weixinP2P/Controllers/WeixinController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
using Senparc.Weixin.MP.MvcExtension;
using Senparc.Weixin.MP;
using dp2weixin;
using dp2Command.Server;
using dp2Command.Service;

namespace dp2weixinP2P.Controllers
{
Expand Down
2 changes: 1 addition & 1 deletion dp2weixinP2P/Global.asax.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Web.SessionState;
using System.Web.Http;
using System.Web.Configuration;
using dp2Command.Server;
using dp2Command.Service;
using DigitalPlatform.IO;
using dp2Command.Service;

Expand Down
4 changes: 2 additions & 2 deletions dp2weixinP2P/dp2weixinP2P.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,9 @@
<Project>{1b74d69a-530f-4275-845b-8ca6d1463bdd}</Project>
<Name>DigitalPlatform.LibraryRestClient</Name>
</ProjectReference>
<ProjectReference Include="..\dp2Command.Server\dp2Command.Server.csproj">
<ProjectReference Include="..\dp2Command.Server\dp2Command.Service.csproj">
<Project>{a77b8a4a-3ae8-4bd7-b09a-bf8d92fe802d}</Project>
<Name>dp2Command.Server</Name>
<Name>dp2Command.Service</Name>
</ProjectReference>
<ProjectReference Include="..\dp2weixin.service\dp2weixin.service.csproj">
<Project>{8085b933-f69e-4a89-97eb-0a61d115c69f}</Project>
Expand Down

0 comments on commit a7a5032

Please sign in to comment.