Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgerlag committed Jul 14, 2019
1 parent b0ffdc1 commit 7cbf3bc
Show file tree
Hide file tree
Showing 62 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions Conductor.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.28922.388
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Conductor", "Conductor\Conductor.csproj", "{BC743A97-4ACF-4189-96B7-02FD9B140841}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Conductor", "src\Conductor\Conductor.csproj", "{BC743A97-4ACF-4189-96B7-02FD9B140841}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Conductor.Domain", "Conductor.Domain\Conductor.Domain.csproj", "{17322103-FD01-472B-A33E-4A955460351B}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Conductor.Domain", "src\Conductor.Domain\Conductor.Domain.csproj", "{17322103-FD01-472B-A33E-4A955460351B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Conductor.Storage", "Conductor.Storage\Conductor.Storage.csproj", "{1010AB76-79FD-42FE-9F59-166323E9BDBD}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Conductor.Storage", "src\Conductor.Storage\Conductor.Storage.csproj", "{1010AB76-79FD-42FE-9F59-166323E9BDBD}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Conductor.Steps", "Conductor.Steps\Conductor.Steps.csproj", "{C9DA979C-9D97-4D8B-B297-C0DEC68C9490}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Conductor.Steps", "src\Conductor.Steps\Conductor.Steps.csproj", "{C9DA979C-9D97-4D8B-B297-C0DEC68C9490}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B3E1C72D-C63A-4A85-AAC1-AF7C1F072907}"
ProjectSection(SolutionItems) = preProject
Expand All @@ -24,7 +24,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Conductor.IntegrationTests"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ScratchPad", "tests\ScratchPad\ScratchPad.csproj", "{45D807EA-1D48-4356-9BA2-E93C6A791F3C}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Conductor.Domain.Scripting", "Conductor.Domain.Scripting\Conductor.Domain.Scripting.csproj", "{8DD6BFDB-3050-4E99-953F-B4B6B4667199}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Conductor.Domain.Scripting", "src\Conductor.Domain.Scripting\Conductor.Domain.Scripting.csproj", "{8DD6BFDB-3050-4E99-953F-B4B6B4667199}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ EXPOSE 443

FROM microsoft/dotnet:2.2-sdk AS build
WORKDIR /src
COPY ["Conductor/Conductor.csproj", "Conductor/"]
COPY ["Conductor.Steps/Conductor.Steps.csproj", "Conductor.Steps/"]
COPY ["Conductor.Domain/Conductor.Domain.csproj", "Conductor.Domain/"]
COPY ["Conductor.Domain.Scripting/Conductor.Domain.Scripting.csproj", "Conductor.Domain.Scripting/"]
COPY ["Conductor.Storage/Conductor.Storage.csproj", "Conductor.Storage/"]
COPY ["src/Conductor/Conductor.csproj", "Conductor/"]
COPY ["src/Conductor.Steps/Conductor.Steps.csproj", "Conductor.Steps/"]
COPY ["src/Conductor.Domain/Conductor.Domain.csproj", "Conductor.Domain/"]
COPY ["src/Conductor.Domain.Scripting/Conductor.Domain.Scripting.csproj", "Conductor.Domain.Scripting/"]
COPY ["src/Conductor.Storage/Conductor.Storage.csproj", "Conductor.Storage/"]
RUN dotnet restore "Conductor/Conductor.csproj"
COPY . .
WORKDIR "/src/Conductor"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
Expand All @@ -16,8 +16,8 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Conductor.Domain\Conductor.Domain.csproj" />
<ProjectReference Include="..\..\Conductor\Conductor.csproj" />
<ProjectReference Include="..\..\src\Conductor.Domain\Conductor.Domain.csproj" />
<ProjectReference Include="..\..\src\Conductor\Conductor.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 7cbf3bc

Please sign in to comment.