This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Display the tab bar and search bar in the same line */ | |
#navigator-toolbox { | |
display: flex; | |
flex-flow: row wrap; | |
} | |
#TabsToolbar { | |
/* Move the tab bar to the end */ | |
order: 1; | |
/* Make it shrink to the right size */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# This gist is obsolete! | |
# Please use https://github.com/Gorilla-Tag-Modding-Group/gorilla-tag-build-tools instead | |
# | |
# https://gist.github.com/Graicc/8ca16f70e9603e9975d99c4a607ff77a | |
name: Auto Build | |
on: | |
workflow_dispatch: | |
push: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://gist.github.com/Graicc/ad26b80ac1a733edc254053fdf012ffe | |
# Needs to be at least that version, or mmm can't read the archive | |
#Requires -Modules @{ ModuleName="Microsoft.PowerShell.Archive"; ModuleVersion="1.2.3" } | |
$MyInvocation.MyCommand.Path | Split-Path | Push-Location # Run from this script's directory | |
$Name = (ls *.csproj).BaseName | |
dotnet build -c Release | |
mkdir BepInEx\plugins\$Name | |
cp bin\Release\netstandard2.0\$Name.dll BepInEx\plugins\$Name\ | |
Compress-Archive .\BepInEx\ $Name-v | |
rmdir .\BepInEx\ -Recurse |