Skip to content

Commit 124711f

Browse files
committed
init
1 parent c7be1d6 commit 124711f

10 files changed

+249
-0
lines changed

PluginTemplate.sln

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.11.35201.85
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PluginTemplate", "PluginTemplate\PluginTemplate.csproj", "{4147C308-9DC2-411D-A3DD-195BA03BEFE2}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{4147C308-9DC2-411D-A3DD-195BA03BEFE2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{4147C308-9DC2-411D-A3DD-195BA03BEFE2}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{4147C308-9DC2-411D-A3DD-195BA03BEFE2}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{4147C308-9DC2-411D-A3DD-195BA03BEFE2}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {42965B0B-BD1C-4FEB-95FA-93D01DC9A227}
24+
EndGlobalSection
25+
EndGlobal

PluginTemplate/MyTemplate.vstemplate

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<VSTemplate Version="3.0.0" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" Type="Project">
2+
<TemplateData>
3+
<Name>ClassIsland Hello world 插件</Name>
4+
<Description>一个能在启动时显示 Hello world 弹窗的 ClassIsland 插件模板。</Description>
5+
<ProjectType>CSharp</ProjectType>
6+
<LanguageTag>csharp</LanguageTag>
7+
<PlatformTag>windows</PlatformTag>
8+
<ProjectTypeTag>desktop</ProjectTypeTag>
9+
<ProjectTypeTag>classisland</ProjectTypeTag>
10+
<ProjectTypeTag>plugin</ProjectTypeTag>
11+
<ProjectSubType>
12+
13+
</ProjectSubType>
14+
<SortOrder>1000</SortOrder>
15+
<CreateNewFolder>true</CreateNewFolder>
16+
<DefaultName>MyPlugin</DefaultName>
17+
<ProvideDefaultName>true</ProvideDefaultName>
18+
<LocationField>Enabled</LocationField>
19+
<EnableLocationBrowseButton>true</EnableLocationBrowseButton>
20+
<CreateInPlace>true</CreateInPlace>
21+
<Icon>__TemplateIcon.ico</Icon>
22+
</TemplateData>
23+
<TemplateContent>
24+
<Project TargetFileName="PluginTemplate.csproj" File="PluginTemplate.csproj" ReplaceParameters="true">
25+
<Folder Name="Properties" TargetFolderName="Properties">
26+
<ProjectItem ReplaceParameters="true" TargetFileName="launchSettings.json">launchSettings.json</ProjectItem>
27+
</Folder>
28+
<ProjectItem ReplaceParameters="false" TargetFileName="icon.png">icon.png</ProjectItem>
29+
<ProjectItem ReplaceParameters="true" TargetFileName="manifest.yml">manifest.yml</ProjectItem>
30+
<ProjectItem ReplaceParameters="true" TargetFileName="Plugin.cs">Plugin.cs</ProjectItem>
31+
<ProjectItem ReplaceParameters="false" TargetFileName="README.md">README.md</ProjectItem>
32+
</Project>
33+
</TemplateContent>
34+
</VSTemplate>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"profiles": {
3+
"ClasssIsland 插件": {
4+
"commandName": "Executable",
5+
"executablePath": "$(ClassIsland_DebugBinaryFile)",
6+
"commandLineArgs": "-epp $(TargetDir)",
7+
"workingDirectory": "$(ClassIsland_DebugBinaryDirectory)"
8+
}
9+
}
10+
}

PluginTemplate/Plugin.cs

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
using ClassIsland.Core.Abstractions;
3+
using ClassIsland.Core.Attributes;
4+
using ClassIsland.Core.Controls.CommonDialog;
5+
using Microsoft.Extensions.DependencyInjection;
6+
using Microsoft.Extensions.Hosting;
7+
8+
namespace $safeprojectname$;
9+
10+
[PluginEntrance]
11+
public class Plugin : PluginBase
12+
{
13+
public override void Initialize(HostBuilderContext context, IServiceCollection services)
14+
{
15+
CommonDialog.ShowInfo("Hello world!");
16+
}
17+
}

PluginTemplate/PluginTemplate.csproj

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0-windows</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<UseWPF>true</UseWPF>
7+
<ImplicitUsings>enable</ImplicitUsings>
8+
<PlatformTarget>x64</PlatformTarget>
9+
<EnableDynamicLoading>True</EnableDynamicLoading>
10+
</PropertyGroup>
11+
12+
<PropertyGroup>
13+
<ClassIslandPluginSdkVersion>1.5.0.2</ClassIslandPluginSdkVersion>
14+
</PropertyGroup>
15+
16+
<ItemGroup>
17+
<PackageReference Include="ClassIsland.PluginSdk" Version="$(ClassIslandPluginSdkVersion)">
18+
<ExcludeAssets>runtime</ExcludeAssets>
19+
</PackageReference>
20+
</ItemGroup>
21+
22+
<ItemGroup>
23+
<None Update="manifest.yml">
24+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
25+
</None>
26+
<None Update="README.md">
27+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
28+
</None>
29+
<None Update="icon.png">
30+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
31+
</None>
32+
</ItemGroup>
33+
</Project>

PluginTemplate/README.md

+118
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
# 插件自述文件
2+
3+
本文件会在插件市场上显示。在安装插件后,本自述文件也会在【应用设置】->【插件】页面中显示。因此,本文件也将会是用户了解你的插件功能的重要途径,建议好好写 README。
4+
5+
**注意事项:**
6+
7+
- 嵌入图片时请使用网络图床。
8+
- 支持在这里直接调用 ClassIsland 内部的 Uri,例如[classisland://app/test/](classisland://app/test/)
9+
- 本文件一般会在 ClassIsland 内置的 Markdown 渲染器(基于 [MdXaml](https://github.com/whistyun/MdXaml))中渲染,仅支持部分 Markdown 语法。
10+
11+
***
12+
13+
**支持的 Markdown 语法:**
14+
15+
> 本示例魔改自 [Leanote 博客](http://leanote.leanote.com/post/markdown-source-code)
16+
17+
# Welcome to ClassIsland! 欢迎来到ClassIsland!
18+
19+
## 1. 排版
20+
21+
**粗体** *斜体*
22+
23+
~~这是一段错误的文本。~~
24+
25+
引用:
26+
27+
> 123123123123
28+
29+
有充列表:
30+
1. 支持Vim
31+
2. 支持Emacs
32+
33+
无序列表:
34+
35+
- 项目1
36+
- 项目2
37+
38+
39+
## 2. 图片与链接
40+
41+
网络图片:
42+
![Banner](https://github.com/user-attachments/assets/a815dd7d-8343-4da5-aee4-3f754aa297e4)
43+
44+
WPF 资源图片:
45+
46+
![1690356161339](pack://application:,,,/ClassIsland;component/Assets/AppLogo.png)
47+
48+
链接:
49+
50+
[ClassIsland 官网](http://classisland.tech)
51+
52+
## 3. 标题
53+
54+
以下是各级标题, 最多支持5级标题
55+
56+
```
57+
# h1
58+
## h2
59+
### h3
60+
#### h4
61+
##### h4
62+
###### h5
63+
```
64+
65+
## 4. 代码
66+
67+
示例:
68+
69+
function get(key) {
70+
return m[key];
71+
}
72+
73+
代码高亮示例:
74+
75+
``` javascript
76+
/**
77+
* nth element in the fibonacci series.
78+
* @param n >= 0
79+
* @return the nth element, >= 0.
80+
*/
81+
function fib(n) {
82+
var a = 1, b = 1;
83+
var tmp;
84+
while (--n >= 0) {
85+
tmp = a;
86+
a += b;
87+
b = tmp;
88+
}
89+
return a;
90+
}
91+
92+
document.write(fib(10));
93+
```
94+
95+
```python
96+
class Employee:
97+
empCount = 0
98+
99+
def __init__(self, name, salary):
100+
self.name = name
101+
self.salary = salary
102+
Employee.empCount += 1
103+
```
104+
105+
# 5. Markdown 扩展
106+
107+
Markdown 扩展支持:
108+
109+
* 表格
110+
111+
## 5.1 表格
112+
113+
Item | Value
114+
-------- | ---
115+
Computer | \$1600
116+
Phone | \$12
117+
Pipe | \$1
118+

PluginTemplate/__TemplateIcon.ico

43 KB
Binary file not shown.

PluginTemplate/icon.png

285 KB
Loading

PluginTemplate/manifest.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# 插件清单文件使用 YAML 格式存储。
2+
# YAML 教程:https://www.runoob.com/w3cnote/yaml-intro.html
3+
# 插件清单格式:https://docs.classisland.tech/zh-cn/latest/dev/plugins/create-project/#%E6%8F%92%E4%BB%B6%E6%B8%85%E5%8D%95%E6%96%87%E4%BB%B6
4+
5+
id: $safeprojectname$
6+
name: $projectname$
7+
description: 插件描述
8+
entranceAssembly: "$safeprojectname$.dll"
9+
url: https://example.com
10+
version: 0.0.0.0
11+
apiVersion: 1.5.0
12+
author: $username$

tools/build.ps1

Whitespace-only changes.

0 commit comments

Comments
 (0)