-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: PluginHost、CoreExtensionsにnuspecファイルを追加
- Loading branch information
1 parent
f5a6754
commit 9124a5d
Showing
4 changed files
with
58 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>AtsEx.PluginHost</id> | ||
<version>0.19.0</version> | ||
<description>BVE Trainsim 5/6 用 AtsEX プラグインを開発するための基本ライブラリです。</description> | ||
<authors>AtsEX Project</authors> | ||
|
||
<projectUrl>https://github.com/automatic9045/AtsEX</projectUrl> | ||
<license type="expression">MIT</license> | ||
<copyright>Copyright © 2022 AtsEX Project</copyright> | ||
<tags>bve bve5 bve6</tags> | ||
<repository type="git" url="https://github.com/automatic9045/AtsEX.git" /> | ||
<title>AtsEX PluginHost</title> | ||
|
||
<dependencies> | ||
<dependency id="Lib.Harmony" version="2.2.2" /> | ||
<dependency id="SlimDX" version="4.0.13.44" /> | ||
<dependency id="UnembeddedResources" version="1.0.0" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="bin\Release\AtsEx.PluginHost.dll" target="lib" /> | ||
<file src="bin\Release\AtsEx.PluginHost.xml" target="lib" /> | ||
<file src="bin\Release\BveTypes.dll" target="lib" /> | ||
<file src="bin\Release\BveTypes.xml" target="lib" /> | ||
<file src="bin\Release\FastCaching.dll" target="lib" /> | ||
<file src="bin\Release\FastMember.dll" target="lib" /> | ||
<file src="bin\Release\TypeWrapping.dll" target="lib" /> | ||
</files> | ||
</package> |
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
25 changes: 25 additions & 0 deletions
25
Extensions/AtsEx.CoreExtensions/AtsEx.CoreExtensions.nuspec
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>AtsEx.CoreExtensions</id> | ||
<version>0.19.0</version> | ||
<description>BVE Trainsim 5/6 用 AtsEX プラグインの開発に便利な拡張機能のセットです。</description> | ||
<authors>AtsEX Project</authors> | ||
|
||
<projectUrl>https://github.com/automatic9045/AtsEX</projectUrl> | ||
<license type="expression">MIT</license> | ||
<copyright>Copyright © 2022 AtsEX Project</copyright> | ||
<tags>bve bve5 bve6</tags> | ||
<repository type="git" url="https://github.com/automatic9045/AtsEX.git" /> | ||
<title>AtsEX CoreExtensions</title> | ||
|
||
<dependencies> | ||
<dependency id="AtsEx.PluginHost" version="0.19.0" /> | ||
<dependency id="ObjectiveHarmonyPatch" version="1.0.0" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="bin\Release\AtsEx.CoreExtensions.dll" target="lib" /> | ||
<file src="bin\Release\AtsEx.CoreExtensions.xml" target="lib" /> | ||
</files> | ||
</package> |