Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ckan setup #3

Merged
merged 2 commits into from
Oct 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions GameData/BoringCrewServices/BoringCrewServices.ckan
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
identifier: BoringCrewServices
name: Boring Crew Services
license: CC-BY-NC-SA-4.0
abstract: Restockalike parts to make Boeing's Starliner spacecraft in Kerbal Space Program.
ksp_version_min: '1.12.3'
author:
- Zorg
- DylanSemrau
depends:
- name: ModuleManager
- name: B9PartSwitch
- name: SimpleAdjustableFairings
- name: Waterfall
- name: KSPCommunityPartModules
recommends:
- KSPCommunityFixes
- Resurfaced
- BluedogDB
- HabTech2
suggests:
- TundraExploration
supports:
- Benjee10-SharedAssets
10 changes: 8 additions & 2 deletions Source/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,11 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("0.0.1")]
[assembly: AssemblyFileVersion("0.0.1")]

[assembly: KSPAssembly(name: "BoringCrewServices"
, versionMajor: 0
, versionMinor: 0
, versionRevision: 1)]

41 changes: 41 additions & 0 deletions Source/Properties/AssemblyInfo.cs.versiontemplate
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("BoringCrewServices")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("BoringCrewServices")]
[assembly: AssemblyCopyright("Copyright © 2024")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("9639afef-cce4-4814-b385-f3ca3568a6d8")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("@VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@")]
[assembly: AssemblyFileVersion("@VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@")]

[assembly: KSPAssembly(name: "BoringCrewServices"
, versionMajor: @VERSION_MAJOR@
, versionMinor: @VERSION_MINOR@
, versionRevision: @VERSION_PATCH@)]