forked from xBimTeam/XbimWebUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for Esent on netstandard builds. xBimTeam#346
This means Xbim.IO.Esent can be referenced by netcore projects. This will enable IfcStore to use the HeuristicModelProvider in netcore apps. Note: Microsoft have republished ManagedEsent under a different nuget Package for 2.0.1+ no longer seem to strong name sign. Equally the new ManagedEsent component only supports net47+ As such I took the decision to use the 'legacy' 1.9.4 Esent for net4[567] and the new 2.0.1 for netstandard (and where the output is unsigned)
- Loading branch information
Showing
6 changed files
with
73 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
using Xbim.Ifc4; | ||
|
||
namespace Xbim.Essentials.NetCore.Tests | ||
{ | ||
[TestClass] | ||
public class EsentTests | ||
{ | ||
[TestMethod] | ||
public void CanCreateEsentModel() | ||
{ | ||
var esentModel = new Xbim.IO.Esent.EsentModel(new EntityFactoryIfc4()); | ||
|
||
Assert.IsNotNull(esentModel); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters