-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔀 Merge pull request #13 from decaprime/undo_bloodstone_migration +se…
…mver:minor Undo Bloodstone hosting VCF
- Loading branch information
Showing
23 changed files
with
58 additions
and
329 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,17 +37,17 @@ jobs: | |
with: | ||
additionalArguments: '/updateprojectfiles /overrideconfig "mode=Mainline"' | ||
|
||
- name: Build | ||
run: dotnet build . -p:Version=$GitVersion_SemVer | ||
- name: Build (Release) | ||
run: dotnet build . --configuration Release -p:Version=$GitVersion_SemVer | ||
|
||
- name: Run Unit Tests | ||
run: dotnet test | ||
|
||
- name: Package Nuget | ||
run: dotnet pack -p:Version=$GitVersion_SemVer --output ./nuget | ||
run: dotnet pack VCF.Core --configuration Release -p:Version=$GitVersion_SemVer --output ./nuget | ||
|
||
- name: Upload a Build Artifact | ||
if: ${{ !env.ACT }} | ||
if: ${{ !env.ACT && github.event_name == 'push' }} | ||
uses: actions/[email protected] | ||
with: | ||
path: ./nuget | ||
|
@@ -62,7 +62,7 @@ jobs: | |
with: | ||
body: Automatic pre-release of ${{ env.GitVersion_SemVer }} for ${{ env.GitVersion_ShortSha }} | ||
name: v${{ env.GitVersion_SemVer }} | ||
files: ./VampireCommandFrameworkPlugin/bin/Debug/net6.0/*.dll | ||
files: ./VCF.Core/bin/Debug/net6.0/VampireCommandFramework.dll | ||
fail_on_unmatched_files: true | ||
prerelease: true | ||
tag_name: v${{ env.GitVersion_SemVer }} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,11 +36,11 @@ jobs: | |
run: gh release download ${{ env.RELEASE_TAG }} -D ./dist | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# - name: Install tcli | ||
# run: dotnet tool install --global tcli | ||
# - name: Run tcli | ||
# run: tcli publish --token ${{ secrets.THUNDERSTORE_KEY }} --package-version ${RELEASE_TAG:1} | ||
# - name: Upload a Build Artifact | ||
# uses: actions/[email protected] | ||
# with: | ||
# path: ./build | ||
- name: Install tcli | ||
run: dotnet tool install --global tcli | ||
- name: Run tcli | ||
run: tcli publish --token ${{ secrets.THUNDERSTORE_KEY }} --package-version ${RELEASE_TAG:1} | ||
- name: Upload a Build Artifact | ||
uses: actions/[email protected] | ||
with: | ||
path: ./build |
This file contains 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 file contains 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
File renamed without changes.
File renamed without changes.
This file contains 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 file contains 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
File renamed without changes.
This file contains 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 file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,32 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Remove="Basics\RoleMiddleware.cs" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<AssemblyName>VampireCommandFramework</AssemblyName> | ||
<Description>My first plugin</Description> | ||
<Version>0.0.999</Version> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<LangVersion>latest</LangVersion> | ||
<NuspecFile>../nuget.nuspec</NuspecFile> | ||
<NuspecProperties>version=$(Version)</NuspecProperties> | ||
<BepInExPluginGuid>gg.deca.VampireCommandFramework</BepInExPluginGuid> | ||
<PackageId>VampireCommandFramework</PackageId> | ||
<RootNamespace>VampireCommandFramework</RootNamespace> | ||
<Authors>deca</Authors> | ||
</PropertyGroup> | ||
<!-- Copy VampireCommandFramework.dll to /dist --> | ||
<Target Name="Thunderstore Copy to Dist" AfterTargets="AfterBuild" Condition=" '$(Configuration)' == 'Release'"> | ||
<Copy SourceFiles="$(OutDir)\VampireCommandFramework.dll" DestinationFolder="$(SolutionDir)/dist" /> | ||
</Target> | ||
<ItemGroup> | ||
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be*" IncludeAssets="compile" /> | ||
<PackageReference Include="BepInEx.Core" Version="6.0.0-be*" IncludeAssets="compile" /> | ||
<PackageReference Include="BepInEx.PluginInfoProps" Version="1.*" /> | ||
<PackageReference Include="VRising.Unhollowed.Client" Version="0.6.5.*" /> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ItemGroup> | ||
<InternalsVisibleTo Include="VCF.Tests" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be*" IncludeAssets="compile" /> | ||
<PackageReference Include="BepInEx.Core" Version="6.0.0-be*" IncludeAssets="compile" /> | ||
</ItemGroup> | ||
</Project> |
This file contains 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 file contains 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 file contains 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 file contains 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 file contains 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
30 changes: 0 additions & 30 deletions
30
VampireCommandFrameworkPlugin/Breadstone/IRunOnInitialized.cs
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.