Skip to content

Commit

Permalink
renamed => DCCS.Data.Source
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanmeissner committed Dec 12, 2018
1 parent a9c4f4c commit e3bda06
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<IsTestProject>true</IsTestProject>
</PropertyGroup>

<ItemGroup>
Expand All @@ -13,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\DCCS.REST.Data\DCCS.REST.Data.csproj" />
<ProjectReference Include="..\DCCS.Data.Source\DCCS.Data.Source.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using NUnit.Framework;

namespace DCCS.REST.Data.Tests
namespace DCCS.Data.Source.Tests
{

[TestFixture]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;
using System.Linq;

namespace DCCS.REST.Data.Tests
namespace DCCS.Data.Source.Tests
{

[TestFixture]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;
using System.Linq;

namespace DCCS.REST.Data.Tests
namespace DCCS.Data.Source.Tests
{

[TestFixture]
Expand Down
4 changes: 2 additions & 2 deletions DCCS.REST.Data.sln → DCCS.Data.Source.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27703.2035
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DCCS.REST.Data", "DCCS.REST.Data\DCCS.REST.Data.csproj", "{A1462C65-8A34-4D1C-9ACE-68BE5E1DB79B}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DCCS.Data.Source", "DCCS.Data.Source\DCCS.Data.Source.csproj", "{A1462C65-8A34-4D1C-9ACE-68BE5E1DB79B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DCCS.REST.Data.Tests", "DCCS.REST.Data.Tests\DCCS.REST.Data.Tests.csproj", "{D1410498-5D3B-4CC2-9EE0-CE3CD6C91CD5}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DCCS.Data.Source.Tests", "DCCS.Data.Source.Tests\DCCS.Data.Source.Tests.csproj", "{D1410498-5D3B-4CC2-9EE0-CE3CD6C91CD5}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion DCCS.REST.Data/Params.cs → DCCS.Data.Source/Params.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;

namespace DCCS.REST.Data
namespace DCCS.Data.Source
{
public class Params
{
Expand Down
2 changes: 1 addition & 1 deletion DCCS.REST.Data/Result.cs → DCCS.Data.Source/Result.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Linq.Dynamic.Core;
using System.Linq.Expressions;

namespace DCCS.REST.Data
namespace DCCS.Data.Source
{
public class Result<T> : Params
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Linq.Dynamic.Core;
using System.Linq.Expressions;

namespace DCCS.REST.Data
namespace DCCS.Data.Source
{
public static class ResultQueryableExtensions
{
Expand Down

0 comments on commit e3bda06

Please sign in to comment.