Skip to content

Commit

Permalink
Merge pull request #445 from RickyB505/master
Browse files Browse the repository at this point in the history
fix appveyor
  • Loading branch information
XdGoldenTigerOfficial authored Sep 20, 2024
2 parents b11f32e + 8df584d commit 2bb8da5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ build:
include_nuget_references: true
verbosity: minimal
after_build:
- cmd: copy README.md build\net452\README.md
- cmd: copy LICENSE.md build\net452\LICENSE.md
- ps: Invoke-WebRequest -OutFile 'build\net452\fxmanifest.lua' https://vespura.com/vmenu/fxmanifest.lua
- cmd: copy README.md build\vMenu\README.md
- cmd: copy LICENSE.md build\vMenu\LICENSE.md
- ps: Invoke-WebRequest -OutFile 'build\vMenu\fxmanifest.lua' https://vespura.com/vmenu/fxmanifest.lua
- cmd: if %APPVEYOR_REPO_TAG%==true (appveyor SetVariable -Name VERSION_NAME -Value %APPVEYOR_REPO_TAG_NAME%) else (appveyor SetVariable -Name VERSION_NAME -Value beta-%APPVEYOR_REPO_COMMIT:~0,7%)
- ps: (gc 'build\net452\fxmanifest.lua') -replace 'versiongoeshere', $env:VERSION_NAME | Out-File -encoding ASCII 'build\net452\fxmanifest.lua'
- cmd: cd build\net452\ && 7z a "..\..\vMenu\vMenu-%VERSION_NAME%.zip" -r * && cd ..\..\vMenu\
- ps: (gc 'build\vMenu\fxmanifest.lua') -replace 'versiongoeshere', $env:VERSION_NAME | Out-File -encoding ASCII 'build\vMenu\fxmanifest.lua'
- cmd: cd build\vMenu\ && 7z a "..\..\vMenu\vMenu-%VERSION_NAME%.zip" -r * && cd ..\..\vMenu\
- cmd: appveyor PushArtifact vMenu-%VERSION_NAME%.zip
deploy:
- provider: GitHub
Expand Down
3 changes: 2 additions & 1 deletion vMenu/vMenuClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
<Configurations>Release;Debug</Configurations>
<AssemblyName>vMenuClient.net</AssemblyName>
<TargetName>$(AssemblyName)</TargetName>
<OutputPath>..\build\</OutputPath>
<OutputPath>..\build\vMenu\</OutputPath>
<DefineConstants>CLIENT</DefineConstants>
<LangVersion>latest</LangVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\SharedClasses\ConfigManager.cs" Link="ConfigManager.cs" />
Expand Down
5 changes: 3 additions & 2 deletions vMenuServer/vMenuServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
<Configurations>Release;Debug</Configurations>
<AssemblyName>vMenuServer.net</AssemblyName>
<TargetName>$(AssemblyName)</TargetName>
<OutputPath>..\build\</OutputPath>
<OutputPath>..\build\vMenu\</OutputPath>
<DefineConstants>SERVER</DefineConstants>
<LangVersion>latest</LangVersion>
<LangVersion>latest</LangVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
Expand Down

0 comments on commit 2bb8da5

Please sign in to comment.