Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
WORKDIR /app

COPY . ./
RUN dotnet restore
RUN dotnet build -c Release

ENTRYPOINT ["bin/Release/net8.0/CCM"]
4 changes: 2 additions & 2 deletions ccm.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 Version 16
VisualStudioVersion = 25.0.1703.8
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ccmEngine", "source\ccmEngine\ccmEngine.csproj", "{E51C626B-D9DB-4043-8D04-19EA5894D4BD}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ccmEngine", "source\CCMEngine\CCMEngine.csproj", "{E51C626B-D9DB-4043-8D04-19EA5894D4BD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ccmTests", "source\ccmTests\ccmTests.csproj", "{6DD930B8-A571-4797-ADEB-B3F02BA827B8}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ccmTests", "source\CCMTests\CCMTests.csproj", "{6DD930B8-A571-4797-ADEB-B3F02BA827B8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CCM", "source\CCM\CCM.csproj", "{C41359DD-C940-4C2F-BBBF-7B8EAEDB7017}"
EndProject
Expand Down
2 changes: 1 addition & 1 deletion source/CCM/CCM.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<OutputPath>..\..\bin\Release</OutputPath>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\CCMEngine\ccmEngine.csproj" />
<ProjectReference Include="..\CCMEngine\CCMEngine.csproj" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion source/CCMTests/CCMTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<None Remove="IntegrationTests\examples.js" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CCMEngine\ccmEngine.csproj" />
<ProjectReference Include="..\CCMEngine\CCMEngine.csproj" />
<ProjectReference Include="..\CCM\CCM.csproj" />
</ItemGroup>
<ItemGroup>
Expand Down