Skip to content

Commit 61c1908

Browse files
authored
Merge pull request #10 from swiftly-solution/beta
2 parents ef40482 + b8f4763 commit 61c1908

File tree

26 files changed

+125
-22
lines changed

26 files changed

+125
-22
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public partial class PluginClassName : BasePlugin {
8181

8282
public override void Load(bool hotReload)
8383
{
84-
Console.WriteLine("Hello World!");
84+
Console.WriteLine("Hello World!!");
8585
// Check examples folder for more information. Don't forget to delete the folder after reading.
8686
}
8787

gitversion.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ branches:
1010
increment: Inherit
1111
tag: beta
1212
is-release-branch: false
13+
is-mainline: false
1314
source-branches: [ master ]
1415
ignore:
1516
sha: []
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<PackageId>SwiftlyS2.CS2.PluginTemplate</PackageId>
7+
<Authors>SwiftlyS2 Team</Authors>
8+
<Version>0.0.4</Version>
9+
<Description>This is a template for creating a SwiftlyS2 plugin.</Description>
10+
<PackageType>Template</PackageType>
11+
<PackageIcon>icon.png</PackageIcon>
12+
13+
<IncludeContentInPack>true</IncludeContentInPack>
14+
<IncludeBuildOutput>false</IncludeBuildOutput>
15+
<ContentTargetFolders>content</ContentTargetFolders>
16+
17+
</PropertyGroup>
18+
19+
<ItemGroup>
20+
<Content Include="..\icon.png" Pack="true" PackagePath="\"/>
21+
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
22+
<Compile Remove="**\*" />
23+
</ItemGroup>
24+
25+
</Project>

managed/SwiftlyS2.PluginTemplate/.template.config/template.json renamed to managed/SwiftlyS2.PluginTemplate/templates/.template.config/template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"author": "SwiftlyS2",
44
"classifications": [ "SwiftlyS2", "Plugin", "CS2" ],
55
"identity": "SwiftlyS2.Plugin.Template",
6-
"name": "SwiftlyS2 Plugin",
6+
"name": "SwiftlyS2 CS2 Plugin",
77
"shortName": "swplugin",
88
"sourceName": "SwiftlyS2.Plugin",
99
"preferNameDirectory": true,
File renamed without changes.

managed/SwiftlyS2.PluginTemplate/SwiftlyS2.Plugin.csproj renamed to managed/SwiftlyS2.PluginTemplate/templates/SwiftlyS2.Plugin.csproj

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<PackageId>SwiftlyS2.CS2.PluginTemplate</PackageId>
5-
<Authors>SwiftlyS2 Team</Authors>
6-
<Version>0.0.1</Version>
7-
<Description>This is a template for creating a SwiftlyS2 plugin.</Description>
84
<TargetFramework>net8.0</TargetFramework>
95
<ImplicitUsings>enable</ImplicitUsings>
106
<Nullable>enable</Nullable>
@@ -22,7 +18,7 @@
2218
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" ExcludeAssets="runtime" PrivateAssets="all" />
2319
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.0" ExcludeAssets="runtime" PrivateAssets="all" />
2420
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" ExcludeAssets="runtime" PrivateAssets="all" />
25-
<PackageReference Include="SwiftlyS2.CS2" Version="0.0.4-beta.8" ExcludeAssets="runtime" PrivateAssets="all" />
21+
<PackageReference Include="SwiftlyS2.CS2" Version="0.2.0-beta.12" ExcludeAssets="runtime" PrivateAssets="all" />
2622
</ItemGroup>
2723

2824
<ItemGroup>

0 commit comments

Comments
 (0)