Skip to content

Commit 5fa9c8b

Browse files
committed
Update to ship EtabsV1.dll together with the package
1 parent ab08106 commit 5fa9c8b

3 files changed

Lines changed: 15 additions & 6 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ bld/
3333
[Ll]og/
3434
[Ll]ogs/
3535

36+
# But ALLOW lib folder DLLs
37+
!lib/*.dll
38+
3639
# Visual Studio 2015/2017 cache/options directory
3740
.vs/
3841
# Uncomment if you have tasks that create the project's static files in wwwroot

lib/ETABSv1.dll

328 KB
Binary file not shown.

src/EtabSharp/EtabSharp.csproj

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
<PackageTags>etabs;structural-engineering;civil-engineering;structural-analysis;csi;etabs-api;building-design;structural-design</PackageTags>
1818

1919
<!-- Repository & Documentation -->
20+
<packageReadmeFile>README.md</packageReadmeFile>
2021
<PackageProjectUrl>https://github.com/tadodev/EtabSharp</PackageProjectUrl>
21-
<PackageReadmeFile>README.md</PackageReadmeFile>
2222
<RepositoryUrl>https://github.com/tadodev/EtabSharp</RepositoryUrl>
2323
<RepositoryType>git</RepositoryType>
2424
<PackageLicenseExpression>MIT</PackageLicenseExpression>
@@ -52,11 +52,17 @@
5252
</ItemGroup>
5353

5454
<ItemGroup>
55-
<Reference Include="ETABSv1">
56-
<HintPath>C:\Program Files\Computers and Structures\ETABS 22\ETABSv1.dll</HintPath>
57-
<Private>False</Private>
58-
<SpecificVersion>False</SpecificVersion>
59-
</Reference>
55+
<Reference Include="ETABSv1">
56+
<HintPath>..\..\lib\ETABSv1.dll</HintPath>
57+
<Private>True</Private>
58+
</Reference>
6059
</ItemGroup>
6160

61+
<!-- Include README and icon in package -->
62+
<ItemGroup>
63+
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
64+
</ItemGroup>
65+
66+
67+
6268
</Project>

0 commit comments

Comments
 (0)