Home
last modified time | relevance | path

Searched full:dotnet (Results 1 – 25 of 40) sorted by relevance

12

/third_party/flatbuffers/tests/FlatBuffers.Test/
DNetTest.sh11 [ -f dotnet-install.sh ] || curl -OL https://dot.net/v1/dotnet-install.sh
13 ./dotnet-install.sh --version latest --install-dir $TEMP_DOTNET_DIR
15 DOTNET=$TEMP_DOTNET_DIR/dotnet
17 $DOTNET new sln
18 $DOTNET sln add $PROJ_FILE
19 $DOTNET restore -r linux-x64 $PROJ_FILE
34 $DOTNET new sln
35 $DOTNET sln add $CORE_PROJ_FILE
36 $DOTNET restore -r linux-x64 $CORE_PROJ_FILE
DNetTest.bat11 dotnet new sln --force --name %CORE_FILE%
12 dotnet sln %CORE_SLN_FILE% add %CORE_PROJ_FILE%
13 dotnet build -c Release -o %TEMP_BIN% -v quiet %CORE_PROJ_FILE%
Dclean.sh10 [ -f dotnet-intall.sh ] && rm dotnet-install.sh
D.gitignore1 dotnet-install.sh
/third_party/protobuf/kokoro/linux/dockerfile/test/csharp/
DDockerfile25 # dotnet SDK prerequisites
28 # Install dotnet SDK via install script
29 RUN wget -q https://dot.net/v1/dotnet-install.sh && \
30 chmod u+x dotnet-install.sh && \
31 ./dotnet-install.sh --version 2.1.802 && \
32 ./dotnet-install.sh --version 3.1.301 && \
33 ln -s /root/.dotnet/dotnet /usr/local/bin
/third_party/protobuf/csharp/
Dinstall_dotnet_sdk.ps12 # Install dotnet SDK using the official dotnet-install.ps1 script
10 $InstallScriptUrl = 'https://dot.net/v1/dotnet-install.ps1'
11 $InstallScriptPath = Join-Path "$env:TEMP" 'dotnet-install.ps1'
Dbuildall.sh9 dotnet restore $SRC/Google.Protobuf.sln
10 dotnet build -c $CONFIG $SRC/Google.Protobuf.sln
17 dotnet test -c $CONFIG -f netcoreapp2.1 $SRC/Google.Protobuf.Test/Google.Protobuf.Test.csproj
Dbuild_packages.bat3 dotnet restore src/Google.Protobuf.sln
4 dotnet pack -c Release src/Google.Protobuf.sln || goto :error
Dbuildall.bat3 dotnet build src/Google.Protobuf.sln || goto :error
7 dotnet test src/Google.Protobuf.Test/Google.Protobuf.Test.csproj || goto :error
DREADME.md54 run using the Visual Studio Test Explorer or `dotnet test`.
/third_party/protobuf/
Dappveyor.bat37 dotnet restore
38 dotnet build -c %configuration% || goto error
41 dotnet test -c %configuration% -f netcoreapp2.1 Google.Protobuf.Test\Google.Protobuf.Test.csproj ||…
42 dotnet test -c %configuration% -f net451 Google.Protobuf.Test\Google.Protobuf.Test.csproj || goto e…
Dtests.sh127 # Disable some unwanted dotnet options
133 # Perform "dotnet new" once to get the setup preprocessing out of the
141 (cd dotnettmp; dotnet new > /dev/null)
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/
Dtest.sh21 dotnet restore src/Google.Protobuf/Google.Protobuf.csproj
22 dotnet restore src/Google.Protobuf.Test/Google.Protobuf.Test.csproj
23 dotnet build -c Release src/Google.Protobuf/Google.Protobuf.csproj
24 dotnet build -c Release src/Google.Protobuf.Test/Google.Protobuf.Test.csproj
25 dotnet run -c Release -f netcoreapp2.1 -p src/Google.Protobuf.Test/Google.Protobuf.Test.csproj
/third_party/protobuf/kokoro/windows/csharp/
Dbuild.bat6 @rem Install dotnet SDK
8 set PATH=%LOCALAPPDATA%\Microsoft\dotnet;%PATH%
10 @rem Disable some unwanted dotnet options
/third_party/protobuf/kokoro/release/csharp/windows/
Dbuild_nuget.bat6 @rem Install dotnet SDK
8 set PATH=%LOCALAPPDATA%\Microsoft\dotnet;%PATH%
10 @rem Disable some unwanted dotnet options
/third_party/flatbuffers/
Dappveyor.yml75 - "dotnet new sln"
76 - "dotnet sln add FlatBuffers.Test.csproj"
/third_party/libabigail/.github/workflows/
Dtest.yaml28 sudo rm -rf /usr/share/dotnet
Dbuild-container.yaml48 sudo rm -rf /usr/share/dotnet
/third_party/flatbuffers/docs/source/
DCsharpUsage.md33 [.NET Core SDK](https://dotnet.microsoft.com/download) by adding the `-f`
37 dotnet build -f netstandard2.0 "FlatBuffers.csproj"
45dotnet build -f netstandard2.1 -p:ENABLE_SPAN_T=true -p:UNSAFE_BYTEBUFFER=true "FlatBuffers.csproj"
/third_party/grpc/
DREADME.md87 | .NET (pure C# impl.) | [grpc-dotnet](https://github.com/grpc/grpc-dotnet) |
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/
DGoogle.Protobuf.Test.csproj21 <!-- Needed for the net45 build to work on Unix. See https://github.com/dotnet/designs/pull/33 -->
/third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/
DGoogle.Protobuf.Test.TestProtos.csproj17 <!-- Needed for the net45 build to work on Unix. See https://github.com/dotnet/designs/pull/33 -->
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
DGoogle.Protobuf.Test.csproj22 <!-- Needed for the net45 build to work on Unix. See https://github.com/dotnet/designs/pull/33 -->
/third_party/protobuf/benchmarks/
DREADME.md71 [BenchmarkDotNet](https://github.com/dotnet/BenchmarkDotNet), which
222 $ dotnet run -c Release
/third_party/protobuf/csharp/src/Google.Protobuf.Benchmarks/
DProgram.cs39 // typical usage: dotnet run -c Release -f netcoreapp2.1

12