From 75cb9f22950ac68ca9b3502fde8f6d80b658daa4 Mon Sep 17 00:00:00 2001 From: Andrew Allen Date: Tue, 23 Apr 2019 15:41:20 +0100 Subject: [PATCH 1/3] Added manifest file to try and get longfilepaths working with libcsharp --- src/GitVersionExe/GitVersion.Tool.csproj | 8 +++ src/GitVersionExe/GitVersionExe.csproj | 1 + src/GitVersionExe/GitVersionExe.manifest | 83 ++++++++++++++++++++++++ 3 files changed, 92 insertions(+) create mode 100644 src/GitVersionExe/GitVersionExe.manifest diff --git a/src/GitVersionExe/GitVersion.Tool.csproj b/src/GitVersionExe/GitVersion.Tool.csproj index 8816195b0b..a45391f3eb 100644 --- a/src/GitVersionExe/GitVersion.Tool.csproj +++ b/src/GitVersionExe/GitVersion.Tool.csproj @@ -11,5 +11,13 @@ + + + + + + Always + + diff --git a/src/GitVersionExe/GitVersionExe.csproj b/src/GitVersionExe/GitVersionExe.csproj index a601b1649a..6dd233c8fd 100644 --- a/src/GitVersionExe/GitVersionExe.csproj +++ b/src/GitVersionExe/GitVersionExe.csproj @@ -10,6 +10,7 @@ MIT bin\$(Configuration)\GitVersion.xml 1591 + app1.manifest diff --git a/src/GitVersionExe/GitVersionExe.manifest b/src/GitVersionExe/GitVersionExe.manifest new file mode 100644 index 0000000000..5f10aa5e71 --- /dev/null +++ b/src/GitVersionExe/GitVersionExe.manifest @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + From 295f07a0c68729b23de6ba73316791bce45e720d Mon Sep 17 00:00:00 2001 From: andrew-allen-work <49529800+andrew-allen-work@users.noreply.github.com> Date: Fri, 6 Dec 2019 09:21:22 +0000 Subject: [PATCH 2/3] Create dotnetcore yaml --- .github/workflows/dotnetcore.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/dotnetcore.yml diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml new file mode 100644 index 0000000000..0f9d2a6777 --- /dev/null +++ b/.github/workflows/dotnetcore.yml @@ -0,0 +1,17 @@ +name: .NET Core + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Setup .NET Core + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 2.2.108 + - name: Build with dotnet + run: dotnet build --configuration Release From 98dc6020ef434048be36c93e144fb450146963a5 Mon Sep 17 00:00:00 2001 From: andrew-allen-work <49529800+andrew-allen-work@users.noreply.github.com> Date: Fri, 6 Dec 2019 09:46:05 +0000 Subject: [PATCH 3/3] Try to fix manifest rubbish Just a test for build stuff --- src/GitVersionExe/GitVersionExe.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GitVersionExe/GitVersionExe.csproj b/src/GitVersionExe/GitVersionExe.csproj index 6dd233c8fd..bfd28fc12f 100644 --- a/src/GitVersionExe/GitVersionExe.csproj +++ b/src/GitVersionExe/GitVersionExe.csproj @@ -10,7 +10,7 @@ MIT bin\$(Configuration)\GitVersion.xml 1591 - app1.manifest + GitVersionExe.manifest