Skip to content

Commit

Permalink
Turned on automatically generating assembly info, to fix file version…
Browse files Browse the repository at this point in the history
… in dll
  • Loading branch information
rivantsov committed Aug 31, 2024
1 parent 3d8edb4 commit f41b8b0
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
9 changes: 5 additions & 4 deletions Common.proj
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<Project>
<PropertyGroup>
<Version>1.5.2</Version>
<AssemblyVersion>1.5.2</AssemblyVersion>
<FileVersion>1.5.2</FileVersion>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Version>1.5.3</Version>
<AssemblyVersion>1.5.3</AssemblyVersion>
<FileVersion>1.5.3</FileVersion>
<ProductVersion>1.5.3</ProductVersion>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>

<AssemblyName>$(MSBuildProjectName)</AssemblyName>
<RootNamespace>$(MSBuildProjectName)</RootNamespace>
Expand Down
Binary file removed Irony.GrammarExplorer/Properties/AssemblyInfo.cs
Binary file not shown.
11 changes: 5 additions & 6 deletions Irony.GrammarExplorer/fmGrammarExplorer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,19 @@
* **********************************************************************************/
//with contributions by Andrew Bradnan and Alexey Yakovlev
#endregion
using Irony.Ast;
using Irony.GrammarExplorer.Properties;
using Irony.Parsing;
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Text.RegularExpressions;
using System.Windows.Forms;
using Irony.Ast;
using Irony.GrammarExplorer.Properties;
using Irony.Parsing;
//using Irony.WinForms;
//using Irony.WinForms.Exceptions;

namespace Irony.GrammarExplorer {
namespace Irony.GrammarExplorer
{
using ScriptException = Irony.Interpreter.ScriptException; //that's the only place we use stuff from Irony.Interpreter

public partial class fmGrammarExplorer : Form {
Expand Down
Binary file removed Irony.Interpreter/Properties/AssemblyInfo.cs
Binary file not shown.
Binary file removed Irony.Samples.Console/Properties/AssemblyInfo.cs
Binary file not shown.
Binary file removed Irony.Samples/Properties/AssemblyInfo.cs
Binary file not shown.
Binary file removed Irony.Tests/Properties/AssemblyInfo.cs
Binary file not shown.
Binary file removed Irony/Properties/AssemblyInfo.cs
Binary file not shown.

0 comments on commit f41b8b0

Please sign in to comment.