diff --git a/.drone.yml b/.drone.yml index 7543512..cc8e199 100644 --- a/.drone.yml +++ b/.drone.yml @@ -11,7 +11,9 @@ steps: - name: build image: mcr.microsoft.com/dotnet/sdk:7.0 commands: - - cd Sources/ + - cd Sources/LolApp/ + - dotnet workload restore + - cd .. - dotnet restore LeagueOfLegends.sln - dotnet build LeagueOfLegends.sln -c Release --no-restore - dotnet publish LeagueOfLegends.sln -c Release --no-restore -o CI_PROJECT_DIR/build/release diff --git a/.gitignore b/.gitignore index dd6d0e6..701ba28 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,33 @@ -lStudio +# ---> macOS +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +# ---> VisualStudio ## Ignore Visual Studio temporary files, build results, and ## files generated by popular Visual Studio add-ons. ## @@ -302,7 +331,7 @@ node_modules/ *.dsw *.dsp -# Visual Studio 6 technical files +# Visual Studio 6 technical files *.ncb *.aps @@ -396,33 +425,4 @@ FodyWeavers.xsd *.msp # JetBrains Rider -*.sln.iml - -# ---> macOS -# General -.DS_Store -.AppleDouble -.LSOverride - -# Icon must end with two \r -Icon - - -# Thumbnails -._* - -# Files that might appear in the root of a volume -.DocumentRevisions-V100 -.fseventsd -.Spotlight-V100 -.TemporaryItems -.Trashes -.VolumeIcon.icns -.com.apple.timemachine.donotpresent - -# Directories potentially created on remote AFP share -.AppleDB -.AppleDesktop -Network Trash Folder -Temporary Items -.apdisk +*.sln.iml \ No newline at end of file