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

Add New Project: AdvancedConsoleApplication and update the changelog.md #46

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
12 changes: 12 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

This file will summarize the changes and bug fixes by Tune version.

## New example application for Tribrids (December 2024)

* Added a new example for Tribrids, AdvancedConsoleApplication, which incoporates most features from other GUI example applications

## Tribrid Series 4.2, Stellar 1.0, and service packs (Summer 2024)

* IAPI now supports Stellar!
* Bug fix: Changed the source CID scaling factor default to zero to prevent unexpected results when using source CID via the API
* Bug fix: ensured default values for isolation width are set when precursors get added
* Bug fix: make users without Ardia aware of how to get an IAPI license


## 4.0.4084.22 and service packs (December 2022)

* No interface changes
Expand Down
14 changes: 12 additions & 2 deletions examples/IAPI Examples.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30413.136
# Visual Studio Version 17
VisualStudioVersion = 17.11.35312.102
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleGuiExample", "exactive\SimpleGuiExample\SimpleGuiExample.csproj", "{0338A742-074A-4301-9F79-44FDD7C6C0D2}"
EndProject
Expand All @@ -17,6 +17,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComprehensiveExample", "exa
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "method-filter", "tribrid\method-filter\method-filter.csproj", "{47945CD1-5061-49C9-BF49-7AF19A542522}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AdvancedConsoleApplication", "tribrid\AdvancedConsoleApplication\AdvancedConsoleApplication.csproj", "{F8ABB7F5-1CBC-4C9B-BCED-9AE3C85DB14E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -63,6 +65,14 @@ Global
{47945CD1-5061-49C9-BF49-7AF19A542522}.Release|Any CPU.Build.0 = Release|Any CPU
{47945CD1-5061-49C9-BF49-7AF19A542522}.Release|x86.ActiveCfg = Release|Any CPU
{47945CD1-5061-49C9-BF49-7AF19A542522}.Release|x86.Build.0 = Release|Any CPU
{F8ABB7F5-1CBC-4C9B-BCED-9AE3C85DB14E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F8ABB7F5-1CBC-4C9B-BCED-9AE3C85DB14E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F8ABB7F5-1CBC-4C9B-BCED-9AE3C85DB14E}.Debug|x86.ActiveCfg = Debug|Any CPU
{F8ABB7F5-1CBC-4C9B-BCED-9AE3C85DB14E}.Debug|x86.Build.0 = Debug|Any CPU
{F8ABB7F5-1CBC-4C9B-BCED-9AE3C85DB14E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F8ABB7F5-1CBC-4C9B-BCED-9AE3C85DB14E}.Release|Any CPU.Build.0 = Release|Any CPU
{F8ABB7F5-1CBC-4C9B-BCED-9AE3C85DB14E}.Release|x86.ActiveCfg = Release|Any CPU
{F8ABB7F5-1CBC-4C9B-BCED-9AE3C85DB14E}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{F8ABB7F5-1CBC-4C9B-BCED-9AE3C85DB14E}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>AdvancedConsoleApplication</RootNamespace>
<AssemblyName>AdvancedConsoleApplication</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="API-2.0">
<HintPath>..\..\..\lib\API-2.0.dll</HintPath>
</Reference>
<Reference Include="Fusion.API-1.0">
<HintPath>..\..\..\lib\tribrid\Fusion.API-1.0.dll</HintPath>
</Reference>
<Reference Include="Spectrum-1.0">
<HintPath>..\..\..\lib\Spectrum-1.0.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="Thermo.TNG.Factory">
<HintPath>..\..\..\lib\tribrid\Thermo.TNG.Factory.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
6 changes: 6 additions & 0 deletions examples/tribrid/AdvancedConsoleApplication/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
</startup>
</configuration>
Loading