Skip to content
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Important Notes:
This plugin is setup for Registration Free installation.

- For your convenience, there is a post build event that registers the assembly. So if you have .Net 2005, just build the project. If you do not have .Net 2005, you'll need run the "regasm" command from the command line (as explained in the STK Help).

- You must place the SensorBoresightView.xml XML manifest document in <STK Install Dir>\Plugins before starting STK.
Once you build this project, copy the contents of the build output directory (..\bin\Release) to:
C:\ProgramData\AGI\Plugins\SensorBoresightPlugin

Copy the file ..\Stk12.SensorBoresightView\SensorBoresightView.xml to your STK user config directory:
C:\Users\<username>\Documents\STK 12\Config\Plugins
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<CategoryRegistry>
<Category Name = "UiPlugins">
<NETUiPlugin
DisplayName="Sensor Boresight View"
DisplayName="SensorBoresightViewPlugin"
TypeName="SensorBoresightViewPlugin.SensorBoresightViewPlugin"
AssemblyName="SensorBoresightViewPlugin, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"
CodeBase="Directory of code base">
AssemblyName="SensorBoresightViewPlugin"
CodeBase="C:\ProgramData\AGI\Plugins\SensorBoresightPlugin">
</NETUiPlugin>
</Category>
</CategoryRegistry>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<RegisterForComInterop>true</RegisterForComInterop>
<RegisterForComInterop>false</RegisterForComInterop>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
Expand Down Expand Up @@ -63,6 +63,9 @@
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
</PropertyGroup>
<ItemGroup>
<Reference Include="AGI.STKObjects.Interop">
<HintPath>..\..\..\..\..\..\..\..\..\Program Files\AGI\STK 12\bin\Primary Interop Assemblies\AGI.STKObjects.Interop.dll</HintPath>
Expand Down