Skip to content

Commit 4aafd10

Browse files
committed
Include jetbrains project files
Update dockerfile to use the root nuget.config
1 parent dba4099 commit 4aafd10

File tree

6 files changed

+39
-1
lines changed

6 files changed

+39
-1
lines changed

.idea/.idea.CSharpRepl/.idea/.gitignore

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.idea.CSharpRepl/.idea/indexLayout.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.idea.CSharpRepl/.idea/vagrant.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.idea.CSharpRepl/.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM mcr.microsoft.com/dotnet/sdk:6.0 as dotnet-build
22
WORKDIR /src
33
COPY . .
44
RUN dotnet --info
5-
RUN dotnet restore CSharpRepl.sln --configfile .nuget/nuget.config
5+
RUN dotnet restore CSharpRepl.sln
66
RUN dotnet build --configuration Release --no-restore
77
# i guess we sitll need to skip tests in CI (github actions or azure devops), anyone have any ideas?
88
#RUN dotnet test --configuration Release CSharpRepl.Tests/CSharpRepl.Tests.csproj --no-build --no-restore

nuget.config

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<packageSources>
4+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
5+
<add key="dotnet-tools" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
6+
</packageSources>
7+
</configuration>

0 commit comments

Comments
 (0)