CHanged new project folder layout
14
.gitignore
vendored
@ -1,8 +1,6 @@
|
||||
/.vs
|
||||
/bin
|
||||
/obj
|
||||
/*.user
|
||||
/*/.vs
|
||||
/*/bin
|
||||
/*/obj
|
||||
/*/*.user
|
||||
bin
|
||||
obj
|
||||
packages
|
||||
*~
|
||||
/.github
|
||||
/.vs
|
||||
3
RandomFileRunner.slnx
Normal file
@ -0,0 +1,3 @@
|
||||
<Solution>
|
||||
<Project Path="source/RandomFileRunner.csproj" />
|
||||
</Solution>
|
||||
22
build.bat
@ -1,17 +1,11 @@
|
||||
RMDIR /s /q "bin\"
|
||||
RMDIR /s /q "obj\"
|
||||
rmdir /s /q "bin\"
|
||||
rmdir /s /q "source\bin\"
|
||||
rmdir /s /q "source\obj\"
|
||||
|
||||
MKDIR bin
|
||||
dotnet restore RandomFileRunner.slnx
|
||||
dotnet publish RandomFileRunner.slnx -r win-x64 -c Release /p:PublishSingleFile=true /p:SelfContained=false /p:PublishReadyToRunfalse=true /p:PublishDir="..\bin\"
|
||||
|
||||
dotnet restore skye.sln
|
||||
dotnet publish skye.sln -r win-x64 -c Release /p:PublishSingleFile=true /p:SelfContained=false /p:PublishReadyToRunfalse=true /p:PublishDir="bin\"
|
||||
rmdir /s /q "source\bin\"
|
||||
rmdir /s /q "source\obj\"
|
||||
|
||||
REM "C:\B\Portable Files (dev)\Inno Setup\v6.0.4-2\app\ISCC.exe" "build-installer.iss"
|
||||
|
||||
"C:\B\Portable Files\7-Zip (Portable)\23.01\App\7-Zip64\7z.exe" a -t7z "bin\randomfilerunner.7z" ".\bin\randomfilerunner.exe" -mx9
|
||||
|
||||
RMDIR /s /q "bin\debug"
|
||||
RMDIR /s /q "bin\release"
|
||||
RMDIR /s /q "obj\"
|
||||
|
||||
PAUSE
|
||||
REM PAUSE
|
||||
25
skye.sln
@ -1,25 +0,0 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.10.35004.147
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RandomFileRunner", "RandomFileRunner.csproj", "{5F301DDB-6E01-4492-BABC-E134722EF0AC}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{5F301DDB-6E01-4492-BABC-E134722EF0AC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{5F301DDB-6E01-4492-BABC-E134722EF0AC}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{5F301DDB-6E01-4492-BABC-E134722EF0AC}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{5F301DDB-6E01-4492-BABC-E134722EF0AC}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {07C35049-4E29-477E-84DD-ED9E52F0F257}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
8
source/.gitignore
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
/.vs
|
||||
/bin
|
||||
/obj
|
||||
/*.user
|
||||
/*/.vs
|
||||
/*/bin
|
||||
/*/obj
|
||||
/*/*.user
|
||||
@ -11,7 +11,7 @@
|
||||
<Copyright>Ray Lam</Copyright>
|
||||
<ApplicationIcon>favicon.ico</ApplicationIcon>
|
||||
<NoWin32Manifest>true</NoWin32Manifest>
|
||||
<Version>1.1.1.031</Version>
|
||||
<Version>1.2.0.050</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||
|
Before Width: | Height: | Size: 365 B After Width: | Height: | Size: 365 B |
|
Before Width: | Height: | Size: 847 B After Width: | Height: | Size: 847 B |
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 424 B After Width: | Height: | Size: 424 B |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
17
source/build.bat
Normal file
@ -0,0 +1,17 @@
|
||||
RMDIR /s /q "bin\"
|
||||
RMDIR /s /q "obj\"
|
||||
|
||||
MKDIR bin
|
||||
|
||||
dotnet restore skye.sln
|
||||
dotnet publish skye.sln -r win-x64 -c Release /p:PublishSingleFile=true /p:SelfContained=false /p:PublishReadyToRunfalse=true /p:PublishDir="bin\"
|
||||
|
||||
REM "C:\B\Portable Files (dev)\Inno Setup\v6.0.4-2\app\ISCC.exe" "build-installer.iss"
|
||||
|
||||
"C:\B\Portable Files\7-Zip (Portable)\23.01\App\7-Zip64\7z.exe" a -t7z "bin\randomfilerunner.7z" ".\bin\randomfilerunner.exe" -mx9
|
||||
|
||||
RMDIR /s /q "bin\debug"
|
||||
RMDIR /s /q "bin\release"
|
||||
RMDIR /s /q "obj\"
|
||||
|
||||
PAUSE
|
||||
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |