Skip to content

Commit

Permalink
fix(repo): clean-up and tidy assembly info
Browse files Browse the repository at this point in the history
  • Loading branch information
tsvilans committed Jul 25, 2023
1 parent 4799e19 commit 8601f63
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.vs
obj
x64
bin
*.user
2 changes: 2 additions & 0 deletions deps/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Dependencies
- [`gmsh-4.11.1-Windows64-sdk`](https://gmsh.info/bin/Windows/gmsh-4.11.1-Windows64-sdk.zip)
2 changes: 1 addition & 1 deletion src/Gmsh.GH/Gmsh.GH.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<AssemblyName>Gmsh.GH</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<Deterministic>false</Deterministic>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
Expand Down
9 changes: 4 additions & 5 deletions src/Gmsh.GH/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Gmsh.GH")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyDescription("Grasshopper plug-in using the .NET/CLI wrapper for Gmsh (https://gmsh.info).")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("KADK")]
[assembly: AssemblyCompany("Tom Svilans")]
[assembly: AssemblyProduct("Gmsh.GH")]
[assembly: AssemblyCopyright("Copyright © KADK 2023")]
[assembly: AssemblyCopyright("Copyright © Tom Svilans 2023")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -31,6 +31,5 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyFileVersion("1.0.0.0")]
6 changes: 3 additions & 3 deletions src/GmshCommon/AssemblyInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ using namespace System::Runtime::InteropServices;
using namespace System::Security::Permissions;

[assembly:AssemblyTitleAttribute(L"GmshCommon")];
[assembly:AssemblyDescriptionAttribute(L"")];
[assembly:AssemblyDescriptionAttribute(L"A .NET/CLI wrapper for Gmsh (https://gmsh.info).")];
[assembly:AssemblyConfigurationAttribute(L"")];
[assembly:AssemblyCompanyAttribute(L"KADK")];
[assembly:AssemblyCompanyAttribute(L"Tom Svilans")];
[assembly:AssemblyProductAttribute(L"GmshCommon")];
[assembly:AssemblyCopyrightAttribute(L"Copyright (c) KADK 2023")];
[assembly:AssemblyCopyrightAttribute(L"Copyright © Tom Svilans 2023")];
[assembly:AssemblyTrademarkAttribute(L"")];
[assembly:AssemblyCultureAttribute(L"")];

Expand Down

0 comments on commit 8601f63

Please sign in to comment.