Skip to content

Commit

Permalink
chore: PluginHost、CoreExtensionsにnuspecファイルを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
automatic9045 committed Jun 3, 2023
1 parent f5a6754 commit 9124a5d
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 0 deletions.
1 change: 1 addition & 0 deletions AtsEx.PluginHost/AtsEx.PluginHost.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@
<Content Include="Resources\ClassWrappers\MapObjectList.resx" />
<Content Include="Resources\ClassWrapperBase.ja.resx" />
<Content Include="Resources\ClassWrapperBase.resx" />
<None Include="AtsEx.PluginHost.nuspec" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
Expand Down
31 changes: 31 additions & 0 deletions AtsEx.PluginHost/AtsEx.PluginHost.nuspec
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>
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="AtsEx.CoreExtensions.nuspec" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
Expand Down
25 changes: 25 additions & 0 deletions Extensions/AtsEx.CoreExtensions/AtsEx.CoreExtensions.nuspec
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>

0 comments on commit 9124a5d

Please sign in to comment.