Skip to content

Commit

Permalink
Projetc move to "src"
Browse files Browse the repository at this point in the history
  • Loading branch information
zimbres committed Dec 7, 2024
1 parent 34c6e39 commit 3a20799
Show file tree
Hide file tree
Showing 31 changed files with 10 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
tag=$(git describe --tags --abbrev=0)
release_name="UptimeKumaRemoteProbe-$tag-${{ matrix.target }}"
dotnet publish UptimeKumaRemoteProbe/UptimeKumaRemoteProbe.csproj --framework net8.0 --runtime "${{ matrix.target }}" --no-self-contained -p:PublishSingleFile=true -c Release -o "$release_name"
dotnet publish src/UptimeKumaRemoteProbe/UptimeKumaRemoteProbe.csproj --framework net8.0 --runtime "${{ matrix.target }}" --no-self-contained -p:PublishSingleFile=true -c Release -o "$release_name"
if [ "${{ matrix.target }}" == "win-x64" ]; then
7z a -tzip "${release_name}.zip" "./${release_name}/*"
Expand Down Expand Up @@ -94,8 +94,8 @@ jobs:
- name: Build and Push Image
uses: docker/build-push-action@v5
with:
context: UptimeKumaRemoteProbe
file: UptimeKumaRemoteProbe/Dockerfile.multiarch
context: src/UptimeKumaRemoteProbe
file: src/UptimeKumaRemoteProbe/Dockerfile.multiarch
tags: ${{ steps.meta.outputs.tags }}
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
12 changes: 6 additions & 6 deletions UptimeKumaRemoteProbe.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.8.34309.116
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UptimeKumaRemoteProbe", "UptimeKumaRemoteProbe\UptimeKumaRemoteProbe.csproj", "{29A3E819-13D5-4FE4-84E3-84497054267D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{4A42D506-96D1-4492-92DB-35B8013122A8}"
ProjectSection(SolutionItems) = preProject
.github\workflows\codeql-analysis.yml = .github\workflows\codeql-analysis.yml
Expand All @@ -15,16 +13,18 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
SECURITY.md = SECURITY.md
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UptimeKumaRemoteProbe", "src\UptimeKumaRemoteProbe\UptimeKumaRemoteProbe.csproj", "{291D4A53-0E98-4E7B-861D-C43973C0B5D1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{29A3E819-13D5-4FE4-84E3-84497054267D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{29A3E819-13D5-4FE4-84E3-84497054267D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{29A3E819-13D5-4FE4-84E3-84497054267D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{29A3E819-13D5-4FE4-84E3-84497054267D}.Release|Any CPU.Build.0 = Release|Any CPU
{291D4A53-0E98-4E7B-861D-C43973C0B5D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{291D4A53-0E98-4E7B-861D-C43973C0B5D1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{291D4A53-0E98-4E7B-861D-C43973C0B5D1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{291D4A53-0E98-4E7B-861D-C43973C0B5D1}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ version: '3.9'
services:
worker:
build:
context: ./UptimeKumaRemoteProbe
context: ./src/UptimeKumaRemoteProbe
dockerfile: Dockerfile
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,6 @@
<Content Include="uptime-kuma.ico" />
</ItemGroup>

<ItemGroup>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.13.1" />
<PackageReference Include="BouncyCastle.Cryptography" Version="2.4.0" />
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 3a20799

Please sign in to comment.