Skip to content

Commit

Permalink
Release new version - a release candidate #80
Browse files Browse the repository at this point in the history
- updated version information
  • Loading branch information
mpostol committed Apr 19, 2022
1 parent 8e0fcb7 commit 67a9278
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 13 deletions.
4 changes: 2 additions & 2 deletions ModelCompilerUI.UnitTest/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("82857734-65e7-4d3c-be6e-2ee06df1834d")]
[assembly: AssemblyVersion("2.1.2.*")]
[assembly: AssemblyFileVersion("2.1.2.0")]
[assembly: AssemblyVersion("3.0.0.*")]
[assembly: AssemblyFileVersion("3.0.0.0")]
8 changes: 4 additions & 4 deletions ModelCompilerUI/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("ModelCompilerUI Unit Tests")]
[assembly: AssemblyDescription("Model Compiler User Interface Unit Tests")]
[assembly: AssemblyTitle("ModelCompilerUI")]
[assembly: AssemblyDescription("Model Compiler User Interface")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("MPostol")]
[assembly: AssemblyProduct("OOI")]
Expand All @@ -19,8 +19,8 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("54581e77-a130-407c-b775-7008dcf93888")]
[assembly: AssemblyVersion("2.1.2.*")]
[assembly: AssemblyFileVersion("2.1.2.0")]
[assembly: AssemblyVersion("3.0.0.*")]
[assembly: AssemblyFileVersion("3.0.0.0")]
[assembly: InternalsVisibleTo(
"OOI.ModelCompilerUI.UnitTest, PublicKey=" +
"00240000048000009400000006020000002400005253413100040000010001005b97a0972ff6b13a" +
Expand Down
13 changes: 10 additions & 3 deletions ModelCompilerUnitTest/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
//__________________________________________________________________________________________________
//
// Copyright (C) 2022, Mariusz Postol LODZ POLAND.
//
// To be in touch join the community at GitHub: https://github.com/mpostol/OPC-UA-OOI/discussions
//__________________________________________________________________________________________________

using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("ModelCompilerUnitTest")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
Expand All @@ -11,5 +18,5 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("e105f463-03ad-4318-9b85-3043d44a7b8c")]
[assembly: AssemblyVersion("2.1.2.*")]
[assembly: AssemblyFileVersion("2.1.2.0")]
[assembly: AssemblyVersion("3.0.0.*")]
[assembly: AssemblyFileVersion("3.0.0.0")]
7 changes: 5 additions & 2 deletions Opc.Ua.ModelCompiler/ModelCompiler.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
Expand All @@ -7,7 +7,7 @@
<Product>Object-Oriented Internet</Product>
<Copyright>Copyright (C) 2022 Mariusz Postol LODZ POLAND</Copyright>
<RepositoryType>GitHub</RepositoryType>
<Version>2.1.2</Version>
<Version>$(VersionPrefix)</Version>
<ApplicationIcon>Logo.ico</ApplicationIcon>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>OOI.ModelCompiler</PackageId>
Expand All @@ -19,6 +19,9 @@
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>OOIModelDesign.snk</AssemblyOriginatorKeyFile>
<Deterministic>true</Deterministic>
<VersionPrefix>3.0.0</VersionPrefix>
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
<FileVersion>$(VersionPrefix)</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Opc.Ua.ModelCompiler/Properties/OOI.ModelCompiler.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>OOI.ModelCompiler</id>
<version>2.1.0-Alpha</version>
<version>3.0.0-Delta</version>
<title>Object Oriented Internet ModelCompiler</title>
<authors>Mariusz Postol</authors>
<owners>Mariusz Postol</owners>
Expand All @@ -12,7 +12,7 @@
<icon>Logo64.PNG</icon>
<description>ModelCompiler converts ModelDesign XML files into UANodeSet XML, C# and ANSI C, files</description>
<releaseNotes>The library has been forked from OPCFoundation/UA-ModelCompiler and will be synchronized with the origin occasionally.</releaseNotes>
<copyright>Copyright (C) 2021 Mariusz Postol LODZ POLAND</copyright>
<copyright>Copyright (C) 2022 Mariusz Postol LODZ POLAND</copyright>
<tags>OOI, OPC-UA, opcua, ModelDesign, UANodeSet, Information Model, IoT</tags>
<repository type="GitHub" url="https://github.com/mpostol/UA-ModelCompiler" />
<dependencies>
Expand Down
3 changes: 3 additions & 0 deletions Tests/DemoModel/DemoModel.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
<IntermediateOutputPath>$(SolutionDir)build\obj\$(Configuration)\$(MSBuildProjectName)\</IntermediateOutputPath>
<RootNamespace>DemoModel</RootNamespace>
<RootNamespace>ModelCompiler</RootNamespace>
<VersionPrefix>3.0.0</VersionPrefix>
<AssemblyVersion>3.0.0</AssemblyVersion>
<FileVersion>3.0.0</FileVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down

0 comments on commit 67a9278

Please sign in to comment.