Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit 0ca8b1e

Browse files
committed
1.1.0-RC1
1 parent bc0fa34 commit 0ca8b1e

File tree

8 files changed

+23
-10
lines changed

8 files changed

+23
-10
lines changed

clr/DNP3CLRAdapter/DNP3CLRAdapter.vcxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,8 @@
132132
<Link>
133133
<GenerateDebugInformation>true</GenerateDebugInformation>
134134
<AdditionalDependencies />
135+
<Version>
136+
</Version>
135137
</Link>
136138
</ItemDefinitionGroup>
137139
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">

clr/DNP3CLRInterface/DNP3CLRInterface.csproj

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,11 @@
6868
<Compile Include="OutstationResponses.cs" />
6969
<Compile Include="PrintingDataObserver.cs" />
7070
<Compile Include="Properties\AssemblyInfo.cs" />
71+
<Compile Include="Properties\Settings.Designer.cs">
72+
<AutoGen>True</AutoGen>
73+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
74+
<DependentUpon>Settings.settings</DependentUpon>
75+
</Compile>
7176
<Compile Include="SerialSettings.cs" />
7277
<Compile Include="SimpleCommandHandler.cs" />
7378
<Compile Include="StackState.cs" />
@@ -76,6 +81,11 @@
7681
<None Include="..\..\file.licenseheader">
7782
<Link>file.licenseheader</Link>
7883
</None>
84+
<None Include="app.config" />
85+
<None Include="Properties\Settings.settings">
86+
<Generator>SettingsSingleFileGenerator</Generator>
87+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
88+
</None>
7989
</ItemGroup>
8090
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
8191
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

clr/DNP3CLRInterface/Properties/AssemblyInfo.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@
3535
// set of attributes. Change these attribute values to modify the information
3636
// associated with an assembly.
3737
[assembly: AssemblyTitle("DNP3CLRInterface")]
38-
[assembly: AssemblyDescription("")]
38+
[assembly: AssemblyDescription("Public API for opendnp3 CLR bindings")]
3939
[assembly: AssemblyConfiguration("")]
40-
[assembly: AssemblyCompany("Microsoft")]
40+
[assembly: AssemblyCompany("Automatak, LLC")]
4141
[assembly: AssemblyProduct("DNP3CLRInterface")]
42-
[assembly: AssemblyCopyright("Copyright © Microsoft 2013")]
42+
[assembly: AssemblyCopyright("Copyright © Automatak, LLC 2013")]
4343
[assembly: AssemblyTrademark("")]
4444
[assembly: AssemblyCulture("")]
4545

@@ -61,5 +61,5 @@
6161
// You can specify all the values or you can default the Build and Revision Numbers
6262
// by using the '*' as shown below:
6363
// [assembly: AssemblyVersion("1.0.*")]
64-
[assembly: AssemblyVersion("1.0.0.0")]
65-
[assembly: AssemblyFileVersion("1.0.0.0")]
64+
[assembly: AssemblyVersion("1.1.0.0")]
65+
[assembly: AssemblyFileVersion("1.1.0.0")]

java/api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.automatak.dnp3</groupId>
77
<artifactId>opendnp3-parent</artifactId>
8-
<version>1.1.0-SNAPSHOT</version>
8+
<version>1.1.0-RC1</version>
99
</parent>
1010

1111
<artifactId>opendnp3-api</artifactId>

java/bindings/pom.xml

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.automatak.dnp3</groupId>
77
<artifactId>opendnp3-parent</artifactId>
8-
<version>1.1.0-SNAPSHOT</version>
8+
<version>1.1.0-RC1</version>
99
</parent>
1010

1111
<artifactId>opendnp3-bindings</artifactId>

java/example/pom.xml

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.automatak.dnp3</groupId>
77
<artifactId>opendnp3-parent</artifactId>
8-
<version>1.1.0-SNAPSHOT</version>
8+
<version>1.1.0-RC1</version>
99
</parent>
1010

1111
<artifactId>opendnp3-example</artifactId>

java/opendnp3java.vcxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@
127127
<GenerateDebugInformation>true</GenerateDebugInformation>
128128
<EnableCOMDATFolding>true</EnableCOMDATFolding>
129129
<OptimizeReferences>true</OptimizeReferences>
130+
<Version>110</Version>
130131
</Link>
131132
</ItemDefinitionGroup>
132133
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">

java/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.automatak.dnp3</groupId>
66
<artifactId>opendnp3-parent</artifactId>
7-
<version>1.1.0-SNAPSHOT</version>
7+
<version>1.1.0-RC1</version>
88
<packaging>pom</packaging>
99

1010
<name>opendnp3</name>
@@ -24,7 +24,7 @@
2424
<maven-scala.plugin.version>3.1.3</maven-scala.plugin.version>
2525
<maven-source-plugin.version>2.1.2</maven-source-plugin.version>
2626
<maven-bundle.version>2.1.0</maven-bundle.version>
27-
<opendnp3.version>1.1.0-SNAPSHOT</opendnp3.version>
27+
<opendnp3.version>1.1.0-RC1</opendnp3.version>
2828
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2929
<scala.version.short>2.10</scala.version.short>
3030
<scala.version>2.10.0</scala.version>

0 commit comments

Comments
 (0)