Skip to content

Commit 97aef51

Browse files
authored
Merge pull request #26 from CCSI-Toolset/tag-2.0.0
Update to 2.1.0.0
2 parents 18cbbcc + 1138fda commit 97aef51

7 files changed

Lines changed: 201 additions & 181 deletions

File tree

LICENSE.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@ Northwest Division through Pacific Northwest National Laboratory, Carnegie Mello
1414
Virginia University, Boston University, the Trustees of Princeton University, The University of
1515
Texas at Austin, URS Energy & Construction, Inc., et al.. All rights reserved.
1616

17+
License Agreement
18+
-----------------
19+
1720
NOTICE. This Software was developed under funding from the U.S. Department of Energy and the
1821
U.S. Government consequently retains certain rights. As such, the U.S. Government has been granted
1922
for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable, worldwide license
2023
in the Software to reproduce, distribute copies to the public, prepare derivative works, and perform
2124
publicly and display publicly, and to permit other to do so.
2225

23-
License Agreement
24-
-----------------
2526

2627
SimSinter Copyright (c) 2012 - 2021, by the software owners: Oak Ridge Institute for Science and
2728
Education (ORISE), TRIAD National Security, LLC., Lawrence Livermore National Security, LLC., The

LICENSE.rtf

4.75 KB
Binary file not shown.

Master/SimSinterInstaller/Library.wxs

Lines changed: 166 additions & 166 deletions
Large diffs are not rendered by default.

Master/SimSinterInstaller/SimSinter.wxs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@
5959
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" />
6060
<UIRef Id="WixUI_Mondo" />
6161
<UIRef Id="WixUI_ErrorProgressText" />
62-
<WixVariable Id="WixUILicenseRtf" Value="..\UC2\LICENSE.rtf" />
63-
62+
<WixVariable Id="WixUILicenseRtf" Value="..\..\LICENSE.rtf" />
6463

6564
</Product>
6665

Master/Sinter/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.6.0.0")]
36-
[assembly: AssemblyFileVersion("1.6.0.0")]
35+
[assembly: AssemblyVersion("2.1.0.0")]
36+
[assembly: AssemblyFileVersion("2.1.0.0")]

Master/Sinter/Sinter.csproj

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@
3737
<PlatformTarget>x86</PlatformTarget>
3838
</PropertyGroup>
3939
<PropertyGroup>
40-
<SignAssembly>false</SignAssembly>
40+
<SignAssembly>true</SignAssembly>
4141
</PropertyGroup>
4242
<PropertyGroup>
43-
<AssemblyOriginatorKeyFile>Sinter.snk</AssemblyOriginatorKeyFile>
43+
<AssemblyOriginatorKeyFile>ccsi2_strong_name.snk</AssemblyOriginatorKeyFile>
4444
</PropertyGroup>
4545
<ItemGroup>
4646
<Reference Include="Interop.Happ">
@@ -116,8 +116,10 @@
116116
</COMReference>
117117
</ItemGroup>
118118
<ItemGroup>
119-
<None Include="packages.config" />
120-
<None Include="Sinter.snk" />
119+
<None Include="ccsi2_strong_name.snk" />
120+
<None Include="packages.config">
121+
<SubType>Designer</SubType>
122+
</None>
121123
</ItemGroup>
122124
<ItemGroup>
123125
<ProjectReference Include="..\VariableTree\VariableTree.csproj">
@@ -136,5 +138,24 @@
136138
</Target>
137139
<Target Name="AfterBuild">
138140
</Target>
139-
-->
141+
142+
<PropertyGroup>
143+
<SNExePath>NotSet</SNExePath>
144+
</PropertyGroup>
145+
<Target Name="GetSNPath" BeforeTargets="AfterBuild">
146+
<GetFrameworkSdkPath>
147+
<Output TaskParameter="Path" PropertyName="WindowsSdkPath" />
148+
</GetFrameworkSdkPath>
149+
<PropertyGroup>
150+
<SignatureFile>..\ccsi2_strong_name.snk</SignatureFile>
151+
<TargetPath>$(TargetDir)Sinter.dll</TargetPath>
152+
<FrameworkVersion>$([System.Text.RegularExpressions.Regex]::Replace('$(TargetFrameworkVersilon)', 'v', ''))</FrameworkVersion>
153+
<NETFXVersion>NETFX 4.0 Tools</NETFXVersion>
154+
<SNExePath Condition="!Exists($(SNExePath))">$(WindowsSdkPath)bin\NETFX 4.0 Tools\sn.exe</SNExePath>
155+
</PropertyGroup>
156+
</Target>
157+
<Target Name="AfterBuild">
158+
<Exec Command="&quot;$(SNExePath)&quot; -R &quot;$(TargetPath)&quot; &quot;$(SignatureFile)&quot;" />
159+
</Target>
160+
-->
140161
</Project>

Master/VariableTree/VariableTree.csproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
<WarningLevel>4</WarningLevel>
3333
</PropertyGroup>
3434
<PropertyGroup>
35-
<SignAssembly>false</SignAssembly>
35+
<SignAssembly>true</SignAssembly>
3636
</PropertyGroup>
3737
<PropertyGroup>
38-
<AssemblyOriginatorKeyFile>VariableTree.snk</AssemblyOriginatorKeyFile>
38+
<AssemblyOriginatorKeyFile>ccsi2_strong_name.snk</AssemblyOriginatorKeyFile>
3939
</PropertyGroup>
4040
<ItemGroup>
4141
<Reference Include="Newtonsoft.Json">
@@ -55,8 +55,7 @@
5555
<Compile Include="VariableTreeNode.cs" />
5656
</ItemGroup>
5757
<ItemGroup>
58-
<None Include="packages.config" />
59-
<None Include="VariableTree.snk" />
58+
<None Include="ccsi2_strong_name.snk" />
6059
</ItemGroup>
6160
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
6261
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

0 commit comments

Comments
 (0)