Skip to content

Commit 82c5a63

Browse files
committed
Move binaries out of src folder
1 parent 1893521 commit 82c5a63

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ jobs:
3535
uses: actions/[email protected]
3636
with:
3737
name: binaries
38-
path: src/binaries/*
38+
path: binaries/*
3939
retention-days: 7

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
--azure-key-vault-tenant-id ${{ secrets.AZURE_KEY_VAULT_TENANT_ID }} `
2828
--azure-key-vault-client-secret ${{ secrets.AZURE_KEY_VAULT_CLIENT_SECRET }} `
2929
--azure-key-vault-certificate ${{ secrets.AZURE_KEY_VAULT_CERTIFICATE_NAME }} `
30-
src/binaries/MonitoringDemo.exe `
31-
src/binaries/Billing/Billing.exe `
32-
src/binaries/ClientUI/ClientUI.exe `
33-
src/binaries/Platform/Platform.exe `
34-
src/binaries/Sales/Sales.exe `
35-
src/binaries/Shipping/Shipping.exe
30+
binaries/MonitoringDemo.exe `
31+
binaries/Billing/Billing.exe `
32+
binaries/ClientUI/ClientUI.exe `
33+
binaries/Platform/Platform.exe `
34+
binaries/Sales/Sales.exe `
35+
binaries/Shipping/Shipping.exe
3636
shell: pwsh
3737
- name: Setup AWS Credentials
3838
uses: aws-actions/[email protected]
@@ -44,7 +44,7 @@ jobs:
4444
shell: pwsh
4545
run: |
4646
echo "Creating Particular.MonitoringDemo.zip archive"
47-
Compress-Archive -Path ./src/binaries/* -DestinationPath ./Particular.MonitoringDemo.zip
47+
Compress-Archive -Path ./binaries/* -DestinationPath ./Particular.MonitoringDemo.zip
4848
4949
echo "Uploading zip file to AWS"
5050
aws s3 cp ./Particular.MonitoringDemo.zip s3://particular.downloads/MonitoringDemo/Particular.MonitoringDemo.zip --content-type application/zip --acl public-read

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
**/Platform/**/db
44
**/bin/
55
**/obj/
6-
src/binaries/**/*
6+
binaries/**/*
77
**/.vs/
88
MonitoringDemo.Sql/support/*.log
99
MonitoringDemo.Sql/transport/

src/Billing/Billing.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<OutputType>Exe</OutputType>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
8-
<OutputPath>..\binaries\Billing\</OutputPath>
8+
<OutputPath>..\..\binaries\Billing\</OutputPath>
99
</PropertyGroup>
1010

1111
<ItemGroup>

src/ClientUI/ClientUI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<OutputType>Exe</OutputType>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
8-
<OutputPath>..\binaries\ClientUI\</OutputPath>
8+
<OutputPath>..\..\binaries\ClientUI\</OutputPath>
99
</PropertyGroup>
1010

1111
<ItemGroup>

src/MonitoringDemo/MonitoringDemo.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<OutputType>Exe</OutputType>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
8-
<OutputPath>..\binaries\</OutputPath>
8+
<OutputPath>..\..\binaries\</OutputPath>
99
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1010
</PropertyGroup>
1111

src/PlatformLauncher/PlatformLauncher.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<OutputType>Exe</OutputType>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
8-
<OutputPath>..\binaries\PlatformLauncher\</OutputPath>
8+
<OutputPath>..\..\binaries\PlatformLauncher\</OutputPath>
99
</PropertyGroup>
1010

1111
<ItemGroup>

src/Sales/Sales.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<OutputType>Exe</OutputType>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
8-
<OutputPath>..\binaries\Sales\</OutputPath>
8+
<OutputPath>..\..\binaries\Sales\</OutputPath>
99
</PropertyGroup>
1010

1111
<ItemGroup>

src/Shipping/Shipping.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<OutputType>Exe</OutputType>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
8-
<OutputPath>..\binaries\Shipping\</OutputPath>
8+
<OutputPath>..\..\binaries\Shipping\</OutputPath>
99
</PropertyGroup>
1010

1111
<ItemGroup>

0 commit comments

Comments
 (0)