mirror of
https://github.com/jeremytammik/RevitSdkSamples.git
synced 2026-08-15 18:14:02 +00:00
compiled 177 success 24 fail 30 error 5 warning
This commit is contained in:
@@ -0,0 +1,543 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>PointCloudEngine</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Revit.SDK.Samples.CS.PointCloudEngine.FileBasedPointCloud">
|
||||
<summary>
|
||||
An implementation for a file-based point cloud.
|
||||
</summary>
|
||||
<example>
|
||||
The file format is based upon XML. A sample XML looks like:
|
||||
<code>
|
||||
<PointCloud>
|
||||
<Scale value="2.5"/>
|
||||
<Cell>
|
||||
<LowerLeft X="-30" Y="-30" Z="0" />
|
||||
<UpperRight X="30" Y="30" Z="200" />
|
||||
<Color value="#000000" />
|
||||
<Randomize value="True" />
|
||||
</Cell>
|
||||
<Cell>
|
||||
<LowerLeft X="-30" Y="-10" Z="10" />
|
||||
<UpperRight X="-29" Y="10" Z="150" />
|
||||
<Color value="#CC3300" />
|
||||
<Randomize value="False" />
|
||||
</Cell>
|
||||
</PointCloud>
|
||||
</code>
|
||||
The scale value applies to the entire point cloud. One or more cell values should be supplied,
|
||||
with the coordinates of the opposing corners, a color, and an option whether or not to randomize
|
||||
the generated points.
|
||||
</example>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.FileBasedPointCloud.#ctor(System.String)">
|
||||
<summary>
|
||||
Constructs a new XML-based point cloud access.
|
||||
</summary>
|
||||
<param name="fileName">The full path to the file.</param>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.FileBasedPointCloud.Setup">
|
||||
<summary>
|
||||
Sets up the file-based point cloud.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.FileBasedPointCloud.GetName">
|
||||
<summary>
|
||||
The implementation of IPointCloudAccess.GetName().
|
||||
</summary>
|
||||
<returns>The name (the file name).</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.FileBasedPointCloud.GetColorEncoding">
|
||||
<summary>
|
||||
The implementation of IPointCloudAccess.GetColorEncoding()
|
||||
</summary>
|
||||
<returns>The color encoding.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.FileBasedPointCloud.CreatePointSetIterator(Autodesk.Revit.DB.PointClouds.PointCloudFilter,Autodesk.Revit.DB.ElementId)">
|
||||
<summary>
|
||||
The implementation of IPointCloudAccess.CreatePointSetIterator().
|
||||
</summary>
|
||||
<param name="rFilter">The filter.</param>
|
||||
<param name="viewId">The view id (unused).</param>
|
||||
<returns>The new iterator.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.FileBasedPointCloud.CreatePointSetIterator(Autodesk.Revit.DB.PointClouds.PointCloudFilter,System.Double,Autodesk.Revit.DB.ElementId)">
|
||||
<summary>
|
||||
The implementation of IPointCloudAccess.CreatePointSetIterator().
|
||||
</summary>
|
||||
<param name="rFilter">The filter.</param>
|
||||
<param name="density">The density.</param>
|
||||
<param name="viewId">The view id (unused).</param>
|
||||
<returns>The new iterator.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.FileBasedPointCloud.GetExtent">
|
||||
<summary>
|
||||
The implementation of IPointCloudAccess.GetExtent().
|
||||
</summary>
|
||||
<returns>The extents of the point cloud.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.FileBasedPointCloud.GetOffset">
|
||||
<summary>
|
||||
The implementation of IPointCloudAccess.GetOffset().
|
||||
</summary>
|
||||
<remarks>This method is not used by Revit and will be removed in a later pre-release build.</remarks>
|
||||
<returns>Zero.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.FileBasedPointCloud.GetUnitsToFeetConversionFactor">
|
||||
<summary>
|
||||
The implementation of IPointCloudAccess.GetUnitsToFeetConversionFactor().
|
||||
</summary>
|
||||
<returns>The scale.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.FileBasedPointCloud.ReadPoints(Autodesk.Revit.DB.PointClouds.PointCloudFilter,Autodesk.Revit.DB.ElementId,System.IntPtr,System.Int32)">
|
||||
<summary>
|
||||
The implementation of IPointCloudAccess.ReadPoints().
|
||||
</summary>
|
||||
<param name="rFilter">The filter.</param>
|
||||
<param name="viewId">The view id (unused).</param>
|
||||
<param name="buffer">The point cloud buffer.</param>
|
||||
<param name="nBufferSize">The maximum number of points.</param>
|
||||
<returns>The number of points read.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.FileBasedPointCloud.Free">
|
||||
<summary>
|
||||
The implementation of IPointCloudAccess.Free().
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudAccessBase">
|
||||
<summary>
|
||||
The base class for all IPointCloudAccess implementations in this sample.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudAccessBase.#ctor">
|
||||
<summary>
|
||||
Constructs a new instance of the base class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudAccessBase.AddCell(Autodesk.Revit.DB.XYZ,Autodesk.Revit.DB.XYZ,System.Int32,System.Boolean)">
|
||||
<summary>
|
||||
Adds a new cell to the point cloud.
|
||||
</summary>
|
||||
<param name="lowerLeft">The lower left point.</param>
|
||||
<param name="upperRight">The upper right point.</param>
|
||||
<param name="color">The color.</param>
|
||||
<param name="randomize">True to randomize point number and location, false for a regular arrangement of points.</param>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudAccessBase.AddCell(Autodesk.Revit.DB.XYZ,Autodesk.Revit.DB.XYZ,System.Int32)">
|
||||
<summary>
|
||||
Adds a new cell to the point cloud.
|
||||
</summary>
|
||||
<param name="lowerLeft">The lower left point.</param>
|
||||
<param name="upperRight">The upper right point.</param>
|
||||
<param name="color">The color.</param>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudAccessBase.AddCellToOutline(Revit.SDK.Samples.CS.PointCloudEngine.PointCloudCellStorage)">
|
||||
<summary>
|
||||
Adds a cell to the stored outline of the point cloud. If the cell boundaries extend beyond the current outline, the outline
|
||||
is adjusted.
|
||||
</summary>
|
||||
<param name="storage"></param>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudAccessBase.GetOutline">
|
||||
<summary>
|
||||
Gets the outline calculated from all cells in the point cloud.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudAccessBase.GetScale">
|
||||
<summary>
|
||||
Gets the scale stored for this point cloud.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudAccessBase.SerializeObjectData(System.Xml.Linq.XElement)">
|
||||
<summary>
|
||||
Saves the contents of the point cloud into an XML element.
|
||||
</summary>
|
||||
<param name="rootElement">The XML element in which to save the point cloud properties.</param>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudAccessBase.ReadSomePoints(Autodesk.Revit.DB.PointClouds.PointCloudFilter,System.IntPtr,System.Int32,System.Int32)">
|
||||
<summary>
|
||||
The internal implementation for point cloud read requests from Revit.
|
||||
</summary>
|
||||
<remarks>Both IPointCloudAccess.ReadPoints() and IPointSetIterator.ReadPoints() are served by this method.</remarks>
|
||||
<param name="rFilter">The point cloud filter.</param>
|
||||
<param name="buffer">The point cloud buffer.</param>
|
||||
<param name="nBufferSize">The maximum number of points in the buffer.</param>
|
||||
<param name="startIndex">The start index for points. Pass 0 if called from IPointCloudAccess.ReadPoints() or if this is the first
|
||||
call to IPointSetIterator.ReadPoints(). Pass the previous cumulative number of read points for second and successive calls to
|
||||
IPointSetIterator.ReadPoints().</param>
|
||||
<returns>The number of points read.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudAccessBase.SetupFrom(System.Xml.Linq.XElement)">
|
||||
<summary>
|
||||
Sets up a point cloud from an XML root element.
|
||||
</summary>
|
||||
<param name="rootElement">The root element.</param>
|
||||
</member>
|
||||
<member name="T:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudAccessBase.PointCloudAccessBaseIterator">
|
||||
<summary>
|
||||
The implementation for an IPointSetIterator for a file-based or predefined point cloud.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudAccessBase.PointCloudAccessBaseIterator.#ctor(Revit.SDK.Samples.CS.PointCloudEngine.PointCloudAccessBase,Autodesk.Revit.DB.PointClouds.PointCloudFilter)">
|
||||
<summary>
|
||||
Constructs a new instance of the point cloud iterator.
|
||||
</summary>
|
||||
<param name="access">The access.</param>
|
||||
<param name="filter">The filter used for this iteration.</param>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudAccessBase.PointCloudAccessBaseIterator.ReadPoints(System.IntPtr,System.Int32)">
|
||||
<summary>
|
||||
Implementation of IPointSetIterator.ReadPoints()
|
||||
</summary>
|
||||
<param name="buffer">The point buffer.</param>
|
||||
<param name="nBufferSize">The buffer size.</param>
|
||||
<returns>The number of points read.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudAccessBase.PointCloudAccessBaseIterator.Free">
|
||||
<summary>
|
||||
Implementation of IPointSetIterator.Free()
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudCellStorage">
|
||||
<summary>
|
||||
This class is used to calculate and store points for a given cell.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudCellStorage.NumberOfPoints">
|
||||
<summary>
|
||||
The number of points in the cell.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudCellStorage.LowerLeft">
|
||||
<summary>
|
||||
The lower left point of the cell.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudCellStorage.UpperRight">
|
||||
<summary>
|
||||
The upper right point of the cell.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudCellStorage.PointsBuffer">
|
||||
<summary>
|
||||
The points in the cell.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudCellStorage.#ctor(Autodesk.Revit.DB.XYZ,Autodesk.Revit.DB.XYZ,System.Int32,System.Boolean)">
|
||||
<summary>
|
||||
Creates a new instance of a rectangular cell.
|
||||
</summary>
|
||||
<param name="lowerLeft">The lower left point of the cell.</param>
|
||||
<param name="upperRight">The upper right point of the cell.</param>
|
||||
<param name="color">The color used for points in the cell.</param>
|
||||
<param name="randomize">True to apply randomization to the number and location of points, false for a regular arrangement of points.</param>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudCellStorage.GeneratePoints">
|
||||
<summary>
|
||||
Invokes the calculation for all points in the cell.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudCellStorage.SerializeObjectData(System.Xml.Linq.XElement)">
|
||||
<summary>
|
||||
Serializes the properties of the cell to an XML element.
|
||||
</summary>
|
||||
<param name="rootElement">The element to which the properties are added as subelements.</param>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudCellStorage.#ctor(System.Xml.Linq.XElement)">
|
||||
<summary>
|
||||
Constructs a new instance of a rectangular cell from an XML element.
|
||||
</summary>
|
||||
<param name="rootElement">The XML element representing the cell.</param>
|
||||
</member>
|
||||
<member name="T:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudTestApplication">
|
||||
<summary>
|
||||
ExternalApplication used to register the point cloud engines managed by this sample.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudTestApplication.OnStartup(Autodesk.Revit.UI.UIControlledApplication)">
|
||||
<summary>
|
||||
The implementation of IExternalApplication.OnStartup()
|
||||
</summary>
|
||||
<param name="application">The Revit application.</param>
|
||||
<returns>Result.Succeeded</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudTestApplication.OnShutdown(Autodesk.Revit.UI.UIControlledApplication)">
|
||||
<summary>
|
||||
The implementation of IExternalApplication.OnShutdown()
|
||||
</summary>
|
||||
<param name="application">The Revit application.</param>
|
||||
<returns>Result.Succeeded.</returns>
|
||||
</member>
|
||||
<member name="T:Revit.SDK.Samples.CS.PointCloudEngine.AddPredefinedInstanceCommand">
|
||||
<summary>
|
||||
ExternalCommand to add a predefined point cloud.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.AddPredefinedInstanceCommand.Execute(Autodesk.Revit.UI.ExternalCommandData,System.String@,Autodesk.Revit.DB.ElementSet)">
|
||||
<summary>
|
||||
The implementation for IExternalCommand.Execute()
|
||||
</summary>
|
||||
<param name="commandData">The Revit command data.</param>
|
||||
<param name="message">The error message (ignored).</param>
|
||||
<param name="elements">The elements to display in the failure dialog (ignored).</param>
|
||||
<returns>Result.Succeeded</returns>
|
||||
</member>
|
||||
<member name="T:Revit.SDK.Samples.CS.PointCloudEngine.AddRandomizedInstanceCommand">
|
||||
<summary>
|
||||
ExternalCommand to a predefined point cloud with randomized points.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.AddRandomizedInstanceCommand.Execute(Autodesk.Revit.UI.ExternalCommandData,System.String@,Autodesk.Revit.DB.ElementSet)">
|
||||
<summary>
|
||||
The implementation for IExternalCommand.Execute()
|
||||
</summary>
|
||||
<param name="commandData">The Revit command data.</param>
|
||||
<param name="message">The error message (ignored).</param>
|
||||
<param name="elements">The elements to display in the failure dialog (ignored).</param>
|
||||
<returns>Result.Succeeded</returns>
|
||||
</member>
|
||||
<member name="T:Revit.SDK.Samples.CS.PointCloudEngine.AddTransformedInstanceCommand">
|
||||
<summary>
|
||||
ExternalCommand to add a predefined point cloud at a non-default transform.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.AddTransformedInstanceCommand.Execute(Autodesk.Revit.UI.ExternalCommandData,System.String@,Autodesk.Revit.DB.ElementSet)">
|
||||
<summary>
|
||||
The implementation for IExternalCommand.Execute()
|
||||
</summary>
|
||||
<param name="commandData">The Revit command data.</param>
|
||||
<param name="message">The error message (ignored).</param>
|
||||
<param name="elements">The elements to display in the failure dialog (ignored).</param>
|
||||
<returns>Result.Succeeded</returns>
|
||||
</member>
|
||||
<member name="T:Revit.SDK.Samples.CS.PointCloudEngine.AddInstanceCommandBase">
|
||||
<summary>
|
||||
Base class for ExternalCommands used to add point cloud instances programmatically.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.AddInstanceCommandBase.AddInstance(Autodesk.Revit.DB.Document,System.String,System.String,Autodesk.Revit.DB.Transform)">
|
||||
<summary>
|
||||
Adds a point cloud instance programmatically.
|
||||
</summary>
|
||||
<param name="doc">The document.</param>
|
||||
<param name="engineType">The engine identifier string.</param>
|
||||
<param name="identifier">The identifier for the particular point cloud.</param>
|
||||
<param name="trf">The transform to apply to the new point cloud instance.</param>
|
||||
</member>
|
||||
<member name="T:Revit.SDK.Samples.CS.PointCloudEngine.SerializePredefinedPointCloud">
|
||||
<summary>
|
||||
Utility ExternalCommand to take a predefined point cloud and write the corresponding XML for it to disk.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.SerializePredefinedPointCloud.Execute(Autodesk.Revit.UI.ExternalCommandData,System.String@,Autodesk.Revit.DB.ElementSet)">
|
||||
<summary>
|
||||
The implementation for IExternalCommand.Execute()
|
||||
</summary>
|
||||
<param name="commandData">The Revit command data.</param>
|
||||
<param name="message">The error message (ignored).</param>
|
||||
<param name="elements">The elements to display in the failure dialog (ignored).</param>
|
||||
<returns>Result.Succeeded</returns>
|
||||
</member>
|
||||
<member name="T:Revit.SDK.Samples.CS.PointCloudEngine.PredefinedPointCloud">
|
||||
<summary>
|
||||
An implementation for a non file-based point cloud. In this implementaiton, the location of the cells, including their colors and options,
|
||||
are hardcoded.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PredefinedPointCloud.#ctor(System.String)">
|
||||
<summary>
|
||||
Constructs a new predefined point cloud access instance.
|
||||
</summary>
|
||||
<param name="identifier">The identifier of the point cloud.</param>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PredefinedPointCloud.#ctor(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Constructs a new predefined point cloud access instance.
|
||||
</summary>
|
||||
<param name="identifier">The identifier of the point cloud.</param>
|
||||
<param name="randomizedPoints">True to use randomization for the point location and number, false otherwise.</param>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PredefinedPointCloud.Setup(System.Boolean)">
|
||||
<summary>
|
||||
Sets up the predefined point cloud.
|
||||
</summary>
|
||||
<param name="randomizedPoints">True to use randomization for the point location and number, false otherwise.</param>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PredefinedPointCloud.GetName">
|
||||
<summary>
|
||||
The implementation of IPointCloudAccess.GetName().
|
||||
</summary>
|
||||
<returns>The name (the file name).</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PredefinedPointCloud.GetColorEncoding">
|
||||
<summary>
|
||||
The implementation of IPointCloudAccess.GetColorEncoding()
|
||||
</summary>
|
||||
<returns>The color encoding.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PredefinedPointCloud.CreatePointSetIterator(Autodesk.Revit.DB.PointClouds.PointCloudFilter,Autodesk.Revit.DB.ElementId)">
|
||||
<summary>
|
||||
The implementation of IPointCloudAccess.CreatePointSetIterator().
|
||||
</summary>
|
||||
<param name="rFilter">The filter.</param>
|
||||
<param name="viewId">The view id (unused).</param>
|
||||
<returns>The new iterator.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PredefinedPointCloud.CreatePointSetIterator(Autodesk.Revit.DB.PointClouds.PointCloudFilter,System.Double,Autodesk.Revit.DB.ElementId)">
|
||||
<summary>
|
||||
The implementation of IPointCloudAccess.CreatePointSetIterator().
|
||||
</summary>
|
||||
<param name="rFilter">The filter.</param>
|
||||
<param name="density">The density.</param>
|
||||
<param name="viewId">The view id (unused).</param>
|
||||
<returns>The new iterator.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PredefinedPointCloud.GetExtent">
|
||||
<summary>
|
||||
The implementation of IPointCloudAccess.GetExtent().
|
||||
</summary>
|
||||
<returns>The extents of the point cloud.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PredefinedPointCloud.GetOffset">
|
||||
<summary>
|
||||
The implementation of IPointCloudAccess.GetOffset().
|
||||
</summary>
|
||||
<remarks>This method is not used by Revit and will be removed in a later pre-release build.</remarks>
|
||||
<returns>Zero.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PredefinedPointCloud.GetUnitsToFeetConversionFactor">
|
||||
<summary>
|
||||
The implementation of IPointCloudAccess.GetUnitsToFeetConversionFactor().
|
||||
</summary>
|
||||
<returns>The scale.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PredefinedPointCloud.ReadPoints(Autodesk.Revit.DB.PointClouds.PointCloudFilter,Autodesk.Revit.DB.ElementId,System.IntPtr,System.Int32)">
|
||||
<summary>
|
||||
The implementation of IPointCloudAccess.ReadPoints().
|
||||
</summary>
|
||||
<param name="rFilter">The filter.</param>
|
||||
<param name="viewId">The view id (unused).</param>
|
||||
<param name="buffer">The point cloud buffer.</param>
|
||||
<param name="nBufferSize">The maximum number of points.</param>
|
||||
<returns>The number of points read.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.PredefinedPointCloud.Free">
|
||||
<summary>
|
||||
The implementation of IPointCloudAccess.Free().
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudEngineType">
|
||||
<summary>
|
||||
The type of engine.
|
||||
</summary>
|
||||
<remarks>Because the same engine implementation is used for all types of engines in this sample, a member of this enumerated type
|
||||
is used to determine the logic necessary to create the IPointCloudAccess instance.</remarks>
|
||||
</member>
|
||||
<member name="F:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudEngineType.Predefined">
|
||||
<summary>
|
||||
A predefined point cloud engine (non-randomized).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudEngineType.RandomizedPoints">
|
||||
<summary>
|
||||
A predefined point cloud engine (randomized).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Revit.SDK.Samples.CS.PointCloudEngine.PointCloudEngineType.FileBased">
|
||||
<summary>
|
||||
A file based point cloud engine.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Revit.SDK.Samples.CS.PointCloudEngine.BasicPointCloudEngine">
|
||||
<summary>
|
||||
An implementation of IPointCloudEngine used by all the custom engines in this sample.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.BasicPointCloudEngine.#ctor(Revit.SDK.Samples.CS.PointCloudEngine.PointCloudEngineType)">
|
||||
<summary>
|
||||
Constructs a new instance of the engine.
|
||||
</summary>
|
||||
<param name="type">The type of point cloud served by this engine instance.</param>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.BasicPointCloudEngine.CreatePointCloudAccess(System.String)">
|
||||
<summary>
|
||||
Implementation of IPointCloudEngine.CreatePointCloudAccess().
|
||||
</summary>
|
||||
<param name="identifier">The identifier (or file name) for the desired point cloud.</param>
|
||||
<returns>The IPointCloudAccess implementation serving this point cloud.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.BasicPointCloudEngine.Free">
|
||||
<summary>
|
||||
Implementation of IPointCloudEngine.Free().
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Revit.SDK.Samples.CS.PointCloudEngine.XmlUtils">
|
||||
<summary>
|
||||
Utilities used by the sample to process XML entries in file-based point clouds.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.XmlUtils.GetXYZ(System.Xml.Linq.XElement)">
|
||||
<summary>
|
||||
Gets an XYZ point from an XML element.
|
||||
</summary>
|
||||
<param name="element">The element.</param>
|
||||
<returns>The XYZ.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.XmlUtils.GetBoolean(System.Xml.Linq.XElement)">
|
||||
<summary>
|
||||
Gets a boolean value from an XML element.
|
||||
</summary>
|
||||
<param name="element">The element.</param>
|
||||
<returns>The value.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.XmlUtils.GetDouble(System.Xml.Linq.XElement)">
|
||||
<summary>
|
||||
Gets a double value from an XML element.
|
||||
</summary>
|
||||
<param name="element">The element.</param>
|
||||
<returns>The value.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.XmlUtils.GetInteger(System.Xml.Linq.XElement)">
|
||||
<summary>
|
||||
Gets an integer value from an XML element.
|
||||
</summary>
|
||||
<param name="element">The element.</param>
|
||||
<returns>The value.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.XmlUtils.GetColor(System.Xml.Linq.XElement)">
|
||||
<summary>
|
||||
Gets a color value (in the form needed for inclusion in a CloudPoint) from an XML element.
|
||||
</summary>
|
||||
<param name="element">The element.</param>
|
||||
<returns>The value.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.XmlUtils.GetXElement(Autodesk.Revit.DB.XYZ,System.String)">
|
||||
<summary>
|
||||
Gets the XML element representing a point.
|
||||
</summary>
|
||||
<param name="point">The point.</param>
|
||||
<param name="name">The name of the XML element.</param>
|
||||
<returns>The element.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.XmlUtils.GetColorXElement(System.Int32,System.String)">
|
||||
<summary>
|
||||
Gets the XML element representing a CloudPoint color.
|
||||
</summary>
|
||||
<param name="color">The color.</param>
|
||||
<param name="name">The name.</param>
|
||||
<returns>The element.</returns>
|
||||
</member>
|
||||
<member name="M:Revit.SDK.Samples.CS.PointCloudEngine.XmlUtils.GetXElement(System.Object,System.String)">
|
||||
<summary>
|
||||
Gets the XML element representing an object.
|
||||
</summary>
|
||||
<param name="obj">The object.</param>
|
||||
<param name="name">The name.</param>
|
||||
<returns>The element.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
+203
-203
@@ -3,17 +3,17 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.6.33829.357
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "ArchSample", "ArchSample\VB.NET\ArchSample.vbproj", "{CD614892-66AC-4F28-8ACD-CC8A48209ED2}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "ArchSample", "ArchSample\VB.NET\ArchSample.vbproj", "{CD614892-66AC-4F28-8ACD-CC8A48209ED2}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AreaReinCurve", "AreaReinCurve\CS\AreaReinCurve.csproj", "{01E38E1B-982E-48FC-89F9-75BA333A8A52}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AreaReinCurve", "AreaReinCurve\CS\AreaReinCurve.csproj", "{01E38E1B-982E-48FC-89F9-75BA333A8A52}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AreaReinParameters", "AreaReinParameters\CS\AreaReinParameters.csproj", "{79220891-F0E5-4FE1-A09B-499831366424}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AreaReinParameters", "AreaReinParameters\CS\AreaReinParameters.csproj", "{79220891-F0E5-4FE1-A09B-499831366424}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CompoundStructure", "CompoundStructure\CS\CompoundStructure.csproj", "{C86EB4CF-72AE-4314-B2A8-16FF5F672E7B}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CompoundStructure", "CompoundStructure\CS\CompoundStructure.csproj", "{C86EB4CF-72AE-4314-B2A8-16FF5F672E7B}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CreateWallinBeamProfile", "CreateWallinBeamProfile\CS\CreateWallinBeamProfile.csproj", "{664689F3-810E-4508-8442-A05CF3A6EE9E}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CreateWallinBeamProfile", "CreateWallinBeamProfile\CS\CreateWallinBeamProfile.csproj", "{664689F3-810E-4508-8442-A05CF3A6EE9E}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DeckProperties", "DeckProperties\CS\DeckProperties.csproj", "{8403D41F-93C8-4B4E-BFB5-9DEECFC43A1B}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DeckProperties", "DeckProperties\CS\DeckProperties.csproj", "{8403D41F-93C8-4B4E-BFB5-9DEECFC43A1B}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "DeleteObject", "DeleteObject", "{F3AC1062-FF86-41B2-BFCE-5BFAE8C758F4}"
|
||||
EndProject
|
||||
@@ -21,15 +21,15 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "VB.NET", "VB.NET", "{382388
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CS", "CS", "{CE18021B-D7A0-4750-BDC3-CF3144083092}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DeleteObject", "DeleteObject\CS\DeleteObject.csproj", "{AD90C71B-5520-44AE-BB88-DCEEA7E755C4}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DeleteObject", "DeleteObject\CS\DeleteObject.csproj", "{AD90C71B-5520-44AE-BB88-DCEEA7E755C4}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "DeleteObject", "DeleteObject\VB.NET\DeleteObject.vbproj", "{6F61D0D0-4D81-452C-84A3-781BFB09FAAA}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "DeleteObject", "DeleteObject\VB.NET\DeleteObject.vbproj", "{6F61D0D0-4D81-452C-84A3-781BFB09FAAA}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "DesignOptionReader", "DesignOptionReader\VB.NET\DesignOptionReader.vbproj", "{B78D6536-0FAA-47B8-A1C0-6F1E59159399}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "DesignOptionReader", "DesignOptionReader\VB.NET\DesignOptionReader.vbproj", "{B78D6536-0FAA-47B8-A1C0-6F1E59159399}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ParameterUtils", "ParameterUtils\CS\ParameterUtils.csproj", "{4F033A02-39C3-4E61-9CD4-969EB3056BCD}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ParameterUtils", "ParameterUtils\CS\ParameterUtils.csproj", "{4F033A02-39C3-4E61-9CD4-969EB3056BCD}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "PhaseSample", "PhaseSample\VB.NET\PhaseSample.vbproj", "{115333F0-6B33-4B21-B206-32367A5564C8}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "PhaseSample", "PhaseSample\VB.NET\PhaseSample.vbproj", "{115333F0-6B33-4B21-B206-32367A5564C8}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SlabProperties", "SlabProperties", "{6FD43B93-80DC-4A84-B675-7B4A7AB68E74}"
|
||||
EndProject
|
||||
@@ -37,27 +37,27 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CS", "CS", "{8FE70168-A011-
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "VB.NET", "VB.NET", "{D94929A7-7F2E-4054-A640-9924E3B61AFF}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SlabProperties", "SlabProperties\CS\SlabProperties.csproj", "{D092B1DC-252A-4B30-A426-671A16189C2B}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SlabProperties", "SlabProperties\CS\SlabProperties.csproj", "{D092B1DC-252A-4B30-A426-671A16189C2B}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "SlabProperties", "SlabProperties\VB.NET\SlabProperties.vbproj", "{66FE594A-8686-4CF9-98F6-F2796EE0461E}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "SlabProperties", "SlabProperties\VB.NET\SlabProperties.vbproj", "{66FE594A-8686-4CF9-98F6-F2796EE0461E}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "StructuralLayerFunction", "StructuralLayerFunction", "{9662093E-0858-4596-AC23-DB3552D5382A}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StructuralLayerFunction", "StructuralLayerFunction\CS\StructuralLayerFunction.csproj", "{8F378242-B7CE-4352-8D71-2F53535DE0A8}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StructuralLayerFunction", "StructuralLayerFunction\CS\StructuralLayerFunction.csproj", "{8F378242-B7CE-4352-8D71-2F53535DE0A8}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CS", "CS", "{320F9AEF-5E74-4F7D-866F-EA039A322A29}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "VB.NET", "VB.NET", "{2F9A25D4-F25C-4E73-A977-4EB9DB24AD21}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "StructuralLayerFunction", "StructuralLayerFunction\VB.NET\StructuralLayerFunction.vbproj", "{8FA11C47-D55E-4738-902C-86FF70207191}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "StructuralLayerFunction", "StructuralLayerFunction\VB.NET\StructuralLayerFunction.vbproj", "{8FA11C47-D55E-4738-902C-86FF70207191}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "TestWallThickness", "TestWallThickness\VB.NET\TestWallThickness.vbproj", "{33676F33-06B5-44C1-9B42-5DA7B973E20B}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "TestWallThickness", "TestWallThickness\VB.NET\TestWallThickness.vbproj", "{33676F33-06B5-44C1-9B42-5DA7B973E20B}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VersionChecking", "VersionChecking\CS\VersionChecking.csproj", "{3CB1D57A-C128-470A-A0AB-AFF25C573B79}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VersionChecking", "VersionChecking\CS\VersionChecking.csproj", "{3CB1D57A-C128-470A-A0AB-AFF25C573B79}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BoundaryConditions", "BoundaryConditions\CS\BoundaryConditions.csproj", "{8A4355DF-E929-490F-8DE9-1CA755920C4D}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BoundaryConditions", "BoundaryConditions\CS\BoundaryConditions.csproj", "{8A4355DF-E929-490F-8DE9-1CA755920C4D}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "BrowseBindings", "BrowseBindings\VB.NET\BrowseBindings.vbproj", "{CF714DBD-56D4-4470-A344-33143D9569C6}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "BrowseBindings", "BrowseBindings\VB.NET\BrowseBindings.vbproj", "{CF714DBD-56D4-4470-A344-33143D9569C6}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CreateBeamsColumnsBraces", "CreateBeamsColumnsBraces", "{01F29C4D-41AD-461A-801B-75E7F912E285}"
|
||||
EndProject
|
||||
@@ -65,37 +65,37 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CS", "CS", "{2D2950A7-6F10-
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "VB.NET", "VB.NET", "{44B6F162-30F1-4CD4-A13F-0ADE8F982847}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CreateBeamsColumnsBraces", "CreateBeamsColumnsBraces\CS\CreateBeamsColumnsBraces.csproj", "{DAEB3B8B-72CD-475C-A648-EF50EC3C2FCA}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CreateBeamsColumnsBraces", "CreateBeamsColumnsBraces\CS\CreateBeamsColumnsBraces.csproj", "{DAEB3B8B-72CD-475C-A648-EF50EC3C2FCA}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "CreateBeamsColumnsBraces", "CreateBeamsColumnsBraces\VB.NET\CreateBeamsColumnsBraces.vbproj", "{66A80C53-6DD3-4826-A7C3-426B22F9DF62}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "CreateBeamsColumnsBraces", "CreateBeamsColumnsBraces\VB.NET\CreateBeamsColumnsBraces.vbproj", "{66A80C53-6DD3-4826-A7C3-426B22F9DF62}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CreateComplexAreaRein", "CreateComplexAreaRein\CS\CreateComplexAreaRein.csproj", "{4F88FC9C-304E-4102-A280-6BB92BE21DB6}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CreateComplexAreaRein", "CreateComplexAreaRein\CS\CreateComplexAreaRein.csproj", "{4F88FC9C-304E-4102-A280-6BB92BE21DB6}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CreateDimensions", "CreateDimensions\CS\CreateDimensions.csproj", "{85BC7DF2-6CF5-4A15-AB87-8E0BD6D02DEC}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CreateDimensions", "CreateDimensions\CS\CreateDimensions.csproj", "{85BC7DF2-6CF5-4A15-AB87-8E0BD6D02DEC}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "CreateShared", "CreateShared\VB.NET\CreateShared.vbproj", "{A85AD7FF-CFB6-4A5F-9BD0-5A3F5463B9DE}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "CreateShared", "CreateShared\VB.NET\CreateShared.vbproj", "{A85AD7FF-CFB6-4A5F-9BD0-5A3F5463B9DE}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CreateSimpleAreaRein", "CreateSimpleAreaRein\CS\CreateSimpleAreaRein.csproj", "{F60E3E5A-71C8-449A-8B2F-1046B6F0D93D}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CreateSimpleAreaRein", "CreateSimpleAreaRein\CS\CreateSimpleAreaRein.csproj", "{F60E3E5A-71C8-449A-8B2F-1046B6F0D93D}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CreateViewSection", "CreateViewSection\CS\CreateViewSection.csproj", "{98A455C0-4131-468B-97A4-D0BE364BF9F8}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CreateViewSection", "CreateViewSection\CS\CreateViewSection.csproj", "{98A455C0-4131-468B-97A4-D0BE364BF9F8}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CreateWallsUnderBeams", "CreateWallsUnderBeams\CS\CreateWallsUnderBeams.csproj", "{49DFC0AA-AA5A-435E-AC5F-B05CF505A1A0}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CreateWallsUnderBeams", "CreateWallsUnderBeams\CS\CreateWallsUnderBeams.csproj", "{49DFC0AA-AA5A-435E-AC5F-B05CF505A1A0}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DeleteDimensions", "DeleteDimensions\CS\DeleteDimensions.csproj", "{1A48873D-956A-4B29-8E1B-A5423080558F}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DeleteDimensions", "DeleteDimensions\CS\DeleteDimensions.csproj", "{1A48873D-956A-4B29-8E1B-A5423080558F}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "FireRating", "FireRating\VB.NET\FireRating.vbproj", "{AE99AD71-0EFA-40E3-B37C-90F7E949220B}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "FireRating", "FireRating\VB.NET\FireRating.vbproj", "{AE99AD71-0EFA-40E3-B37C-90F7E949220B}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FoundationSlab", "FoundationSlab\CS\FoundationSlab.csproj", "{53D3114D-D1C7-4C70-825B-CA28AE8FFE1D}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FoundationSlab", "FoundationSlab\CS\FoundationSlab.csproj", "{53D3114D-D1C7-4C70-825B-CA28AE8FFE1D}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GenerateFloor", "GenerateFloor\CS\GenerateFloor.csproj", "{5B8D8333-3FD7-44AE-860D-41C7685C5A6B}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GenerateFloor", "GenerateFloor\CS\GenerateFloor.csproj", "{5B8D8333-3FD7-44AE-860D-41C7685C5A6B}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InPlaceMembers", "InPlaceMembers\CS\InPlaceMembers.csproj", "{4996A0A3-C581-4B6B-858F-67F22712CF02}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "InPlaceMembers", "InPlaceMembers\CS\InPlaceMembers.csproj", "{4996A0A3-C581-4B6B-858F-67F22712CF02}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InvisibleParam", "InvisibleParam\CS\InvisibleParam.csproj", "{607E7608-B813-4FB7-9262-0F0BE09A302C}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "InvisibleParam", "InvisibleParam\CS\InvisibleParam.csproj", "{607E7608-B813-4FB7-9262-0F0BE09A302C}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Journaling", "Journaling\CS\Journaling.csproj", "{D5BF2857-5A60-48C4-9944-6E57A0781ED2}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Journaling", "Journaling\CS\Journaling.csproj", "{D5BF2857-5A60-48C4-9944-6E57A0781ED2}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LevelsProperty", "LevelsProperty\CS\LevelsProperty.csproj", "{3BDA192E-06F3-43B2-8ADD-A1D8766935A0}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LevelsProperty", "LevelsProperty\CS\LevelsProperty.csproj", "{3BDA192E-06F3-43B2-8ADD-A1D8766935A0}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MaterialProperties", "MaterialProperties", "{3C58FE5B-2CDC-4E44-A58F-46170A07DC1A}"
|
||||
EndProject
|
||||
@@ -103,27 +103,27 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CS", "CS", "{DCF63B21-2756-
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "VB.NET", "VB.NET", "{7691C4CE-548F-4590-A580-9A900BD7E6E5}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MaterialProperties", "MaterialProperties\CS\MaterialProperties.csproj", "{4AD14A32-1CFA-4843-A645-E34FA2868F57}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialProperties", "MaterialProperties\CS\MaterialProperties.csproj", "{4AD14A32-1CFA-4843-A645-E34FA2868F57}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "MaterialProperties", "MaterialProperties\VB.NET\MaterialProperties.vbproj", "{A4DABB0B-29A5-4749-BBD5-224D942E718E}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "MaterialProperties", "MaterialProperties\VB.NET\MaterialProperties.vbproj", "{A4DABB0B-29A5-4749-BBD5-224D942E718E}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModelLines", "ModelLines\CS\ModelLines.csproj", "{F3413A79-C2DC-4C02-A03A-B614123258BC}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ModelLines", "ModelLines\CS\ModelLines.csproj", "{F3413A79-C2DC-4C02-A03A-B614123258BC}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MoveLinear", "MoveLinear\CS\MoveLinear.csproj", "{E33970AA-7837-4C5A-BAE0-A43D46E6F19B}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MoveLinear", "MoveLinear\CS\MoveLinear.csproj", "{E33970AA-7837-4C5A-BAE0-A43D46E6F19B}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NewPathReinforcement", "NewPathReinforcement\CS\NewPathReinforcement.csproj", "{6EEC8736-C09A-4154-8070-5075CBCE42E2}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NewPathReinforcement", "NewPathReinforcement\CS\NewPathReinforcement.csproj", "{6EEC8736-C09A-4154-8070-5075CBCE42E2}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ObjectViewer", "ObjectViewer\CS\ObjectViewer.csproj", "{274E118B-8191-47B8-8E6E-83F65D8A82E4}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ObjectViewer", "ObjectViewer\CS\ObjectViewer.csproj", "{274E118B-8191-47B8-8E6E-83F65D8A82E4}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProjectInfo", "ProjectInfo\CS\ProjectInfo.csproj", "{E832481F-F7F5-4E40-841C-1A7A6D21F576}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProjectInfo", "ProjectInfo\CS\ProjectInfo.csproj", "{E832481F-F7F5-4E40-841C-1A7A6D21F576}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReferencePlane", "ReferencePlane\CS\ReferencePlane.csproj", "{1B954375-6B21-48A9-B301-38BAE35673AD}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ReferencePlane", "ReferencePlane\CS\ReferencePlane.csproj", "{1B954375-6B21-48A9-B301-38BAE35673AD}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Reinforcement", "Reinforcement\CS\Reinforcement.csproj", "{E1DA0A90-58B2-4032-B443-F8C397CE3B49}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Reinforcement", "Reinforcement\CS\Reinforcement.csproj", "{E1DA0A90-58B2-4032-B443-F8C397CE3B49}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Rooms", "Rooms\CS\Rooms.csproj", "{F9BA220D-5F61-4AF8-9DB4-4BC08463B1AB}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Rooms", "Rooms\CS\Rooms.csproj", "{F9BA220D-5F61-4AF8-9DB4-4BC08463B1AB}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoomSchedule", "RoomSchedule\CS\RoomSchedule.csproj", "{CAB59A7F-7317-4E91-B3DE-BA016E38C01A}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RoomSchedule", "RoomSchedule\CS\RoomSchedule.csproj", "{CAB59A7F-7317-4E91-B3DE-BA016E38C01A}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RotateFramingObjects", "RotateFramingObjects", "{9F61D765-5519-40F6-AE2A-8672A4F871E7}"
|
||||
EndProject
|
||||
@@ -131,145 +131,145 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CS", "CS", "{0113B13D-C517-
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "VB.NET", "VB.NET", "{E67D2DE6-0639-421D-97CB-655430CAFD69}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RotateFramingObjects", "RotateFramingObjects\CS\RotateFramingObjects.csproj", "{48A33B6D-7E0A-4F17-9E8F-47A85E87B532}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RotateFramingObjects", "RotateFramingObjects\CS\RotateFramingObjects.csproj", "{48A33B6D-7E0A-4F17-9E8F-47A85E87B532}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "RotateFramingObjects", "RotateFramingObjects\VB.NET\RotateFramingObjects.vbproj", "{1823B4FE-46DE-4CB1-A310-DED7B854F087}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "RotateFramingObjects", "RotateFramingObjects\VB.NET\RotateFramingObjects.vbproj", "{1823B4FE-46DE-4CB1-A310-DED7B854F087}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpanDirection", "SpanDirection\CS\SpanDirection.csproj", "{EFACF01D-6DED-4191-90E8-07EA63506792}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SpanDirection", "SpanDirection\CS\SpanDirection.csproj", "{EFACF01D-6DED-4191-90E8-07EA63506792}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpotDimension", "SpotDimension\CS\SpotDimension.csproj", "{4B9E2FC9-BDDA-4434-8BFE-39E13A127049}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SpotDimension", "SpotDimension\CS\SpotDimension.csproj", "{4B9E2FC9-BDDA-4434-8BFE-39E13A127049}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "TestFloorThickness", "TestFloorThickness\VB.NET\TestFloorThickness.vbproj", "{BEF05D6C-DCEB-4B70-A2E0-BD719F3455F2}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "TestFloorThickness", "TestFloorThickness\VB.NET\TestFloorThickness.vbproj", "{BEF05D6C-DCEB-4B70-A2E0-BD719F3455F2}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TransactionControl", "TransactionControl\CS\TransactionControl.csproj", "{CABE1E71-BAD8-4B8F-9001-D9D2A484F146}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TransactionControl", "TransactionControl\CS\TransactionControl.csproj", "{CABE1E71-BAD8-4B8F-9001-D9D2A484F146}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VisibilityControl", "VisibilityControl\CS\VisibilityControl.csproj", "{6F7D3FF8-39DF-4053-B5BA-71804A673F30}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VisibilityControl", "VisibilityControl\CS\VisibilityControl.csproj", "{6F7D3FF8-39DF-4053-B5BA-71804A673F30}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BeamAndSlabNewParameter", "BeamAndSlabNewParameter\CS\BeamAndSlabNewParameter.csproj", "{14B16804-1586-4D7F-8B43-D48C3EA15AE8}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BeamAndSlabNewParameter", "BeamAndSlabNewParameter\CS\BeamAndSlabNewParameter.csproj", "{14B16804-1586-4D7F-8B43-D48C3EA15AE8}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CreateBeamSystem", "CreateBeamSystem\CS\CreateBeamSystem.csproj", "{205E158D-9960-489D-A391-4804D9D3F8DC}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CreateBeamSystem", "CreateBeamSystem\CS\CreateBeamSystem.csproj", "{205E158D-9960-489D-A391-4804D9D3F8DC}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GridCreation", "GridCreation\CS\GridCreation.csproj", "{9CBA7F2F-0B89-415D-B46E-F68057ACB04F}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GridCreation", "GridCreation\CS\GridCreation.csproj", "{9CBA7F2F-0B89-415D-B46E-F68057ACB04F}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NewOpenings", "NewOpenings\CS\NewOpenings.csproj", "{379E2FAA-67A6-4360-BEE6-37496B7BB89A}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NewOpenings", "NewOpenings\CS\NewOpenings.csproj", "{379E2FAA-67A6-4360-BEE6-37496B7BB89A}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Openings", "Openings\CS\Openings.csproj", "{C7A272AF-69E5-4E22-9CF7-5E49E67ABDB4}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Openings", "Openings\CS\Openings.csproj", "{C7A272AF-69E5-4E22-9CF7-5E49E67ABDB4}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PathReinforcement", "PathReinforcement\CS\PathReinforcement.csproj", "{32B2FD02-DBD6-47EF-8709-C550F4074E64}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PathReinforcement", "PathReinforcement\CS\PathReinforcement.csproj", "{32B2FD02-DBD6-47EF-8709-C550F4074E64}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PhysicalProp", "PhysicalProp\CS\PhysicalProp.csproj", "{40423DF3-F8FE-4BC3-95E8-D4D715313B9B}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PhysicalProp", "PhysicalProp\CS\PhysicalProp.csproj", "{40423DF3-F8FE-4BC3-95E8-D4D715313B9B}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharedCoordinateSystem", "SharedCoordinateSystem\CS\SharedCoordinateSystem.csproj", "{7E14896B-D571-4927-A55A-05DD26193312}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SharedCoordinateSystem", "SharedCoordinateSystem\CS\SharedCoordinateSystem.csproj", "{7E14896B-D571-4927-A55A-05DD26193312}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Viewers", "Viewers", "{990531BD-C847-45F8-9B20-EA8E850EEB2A}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "AnalyticalViewer", "Viewers\AnalyticalViewer\VB.NET\AnalyticalViewer.vbproj", "{1ADAB5BD-80A9-46E4-8B57-AB6865A0AE07}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "AnalyticalViewer", "Viewers\AnalyticalViewer\VB.NET\AnalyticalViewer.vbproj", "{1ADAB5BD-80A9-46E4-8B57-AB6865A0AE07}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "ElementViewer", "Viewers\ElementViewer\VB.NET\ElementViewer.vbproj", "{0F4E2284-7141-43F7-8EE1-439DB0AE0075}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "ElementViewer", "Viewers\ElementViewer\VB.NET\ElementViewer.vbproj", "{0F4E2284-7141-43F7-8EE1-439DB0AE0075}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "RevitViewer", "Viewers\RevitViewer\VB.NET\RevitViewer.vbproj", "{F2A04D84-B791-4738-A226-D38CDD8EBF87}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "RevitViewer", "Viewers\RevitViewer\VB.NET\RevitViewer.vbproj", "{F2A04D84-B791-4738-A226-D38CDD8EBF87}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "RoomViewer", "Viewers\RoomViewer\VB.NET\RoomViewer.vbproj", "{5E06B1F9-1B43-4667-908C-BFFCC7DE1588}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "RoomViewer", "Viewers\RoomViewer\VB.NET\RoomViewer.vbproj", "{5E06B1F9-1B43-4667-908C-BFFCC7DE1588}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CurvedBeam", "CurvedBeam\CS\CurvedBeam.csproj", "{5F59AEEF-6E71-4A21-A9D4-B92BC93AEFD0}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CurvedBeam", "CurvedBeam\CS\CurvedBeam.csproj", "{5F59AEEF-6E71-4A21-A9D4-B92BC93AEFD0}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FrameBuilder", "FrameBuilder\CS\FrameBuilder.csproj", "{FCA4DD1E-1C51-4B45-B0E1-95FEFC077548}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FrameBuilder", "FrameBuilder\CS\FrameBuilder.csproj", "{FCA4DD1E-1C51-4B45-B0E1-95FEFC077548}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Loads", "Loads\CS\Loads.csproj", "{62E74082-D02B-4E8D-8A0B-72C20B339CB1}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Loads", "Loads\CS\Loads.csproj", "{62E74082-D02B-4E8D-8A0B-72C20B339CB1}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "RevitCommands", "RevitCommands\VB.NET\RevitCommands.vbproj", "{73C4CC97-C4BE-453E-92CA-CA3D3F2F5285}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "RevitCommands", "RevitCommands\VB.NET\RevitCommands.vbproj", "{73C4CC97-C4BE-453E-92CA-CA3D3F2F5285}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ShaftHolePuncher", "ShaftHolePuncher\CS\ShaftHolePuncher.csproj", "{F505433F-AF41-4A23-AC0F-F38FFA99EC5D}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShaftHolePuncher", "ShaftHolePuncher\CS\ShaftHolePuncher.csproj", "{F505433F-AF41-4A23-AC0F-F38FFA99EC5D}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StructSample", "StructSample\CS\StructSample.csproj", "{30F00329-6D42-4F58-9B0E-7948C9323B3A}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StructSample", "StructSample\CS\StructSample.csproj", "{30F00329-6D42-4F58-9B0E-7948C9323B3A}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TagBeam", "TagBeam\CS\TagBeam.csproj", "{832CF83C-93D1-4250-8DE2-940E433F9FA3}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TagBeam", "TagBeam\CS\TagBeam.csproj", "{832CF83C-93D1-4250-8DE2-940E433F9FA3}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "TypeSelector", "TypeSelector\VB.NET\TypeSelector.vbproj", "{3AF8FED9-7ADB-4797-AF29-D6C5509C1EC9}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "TypeSelector", "TypeSelector\VB.NET\TypeSelector.vbproj", "{3AF8FED9-7ADB-4797-AF29-D6C5509C1EC9}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AddSpaceAndZone", "AddSpaceAndZone\CS\AddSpaceAndZone.csproj", "{8CA72C14-FB27-42F8-8F6E-18BBCEA10ECB}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AddSpaceAndZone", "AddSpaceAndZone\CS\AddSpaceAndZone.csproj", "{8CA72C14-FB27-42F8-8F6E-18BBCEA10ECB}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NewRebar", "NewRebar\CS\NewRebar.csproj", "{3F5F3438-EA42-4340-9DEA-1D82A80BDE94}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NewRebar", "NewRebar\CS\NewRebar.csproj", "{3F5F3438-EA42-4340-9DEA-1D82A80BDE94}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Truss", "Truss\CS\Truss.csproj", "{1AB26248-7122-4FE0-9B02-2C14013B2CF2}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Truss", "Truss\CS\Truss.csproj", "{1AB26248-7122-4FE0-9B02-2C14013B2CF2}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "APIAppStartup", "APIAppStartup\CS\APIAppStartup.csproj", "{D6C256D4-B518-464F-9E68-CB282202E846}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "APIAppStartup", "APIAppStartup\CS\APIAppStartup.csproj", "{D6C256D4-B518-464F-9E68-CB282202E846}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoTagRooms", "AutoTagRooms\CS\AutoTagRooms.csproj", "{8CEED5CF-003B-4595-9EC5-8A08432719BA}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AutoTagRooms", "AutoTagRooms\CS\AutoTagRooms.csproj", "{8CEED5CF-003B-4595-9EC5-8A08432719BA}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CurtainWallGrid", "CurtainWallGrid\CS\CurtainWallGrid.csproj", "{C6D32355-2C27-4A24-9BE4-11F3E78C301E}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CurtainWallGrid", "CurtainWallGrid\CS\CurtainWallGrid.csproj", "{C6D32355-2C27-4A24-9BE4-11F3E78C301E}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PowerCircuit", "PowerCircuit\CS\PowerCircuit.csproj", "{C6ED7380-B017-4B06-A254-D26A291CBD3F}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerCircuit", "PowerCircuit\CS\PowerCircuit.csproj", "{C6ED7380-B017-4B06-A254-D26A291CBD3F}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PlaceFamilyInstanceByFace", "PlaceFamilyInstanceByFace\CS\PlaceFamilyInstanceByFace.csproj", "{ABD6F3DB-10CA-49B6-869E-843A16F79FF2}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PlaceFamilyInstanceByFace", "PlaceFamilyInstanceByFace\CS\PlaceFamilyInstanceByFace.csproj", "{ABD6F3DB-10CA-49B6-869E-843A16F79FF2}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DoorSwing", "DoorSwing\CS\DoorSwing.csproj", "{B509317E-B7F9-4365-8980-18EDC3B6F6F9}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DoorSwing", "DoorSwing\CS\DoorSwing.csproj", "{B509317E-B7F9-4365-8980-18EDC3B6F6F9}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SlabShapeEditing", "SlabShapeEditing\CS\SlabShapeEditing.csproj", "{1DC983AE-320A-4CEB-8C7F-4223367099D0}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SlabShapeEditing", "SlabShapeEditing\CS\SlabShapeEditing.csproj", "{1DC983AE-320A-4CEB-8C7F-4223367099D0}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NewRoof", "NewRoof\CS\NewRoof.csproj", "{1BB53C76-C784-4490-9CB2-CF9AEC00C3A3}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NewRoof", "NewRoof\CS\NewRoof.csproj", "{1BB53C76-C784-4490-9CB2-CF9AEC00C3A3}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CurtainSystem", "CurtainSystem\CS\CurtainSystem.csproj", "{80502467-3D8F-436D-9E47-AF3702D679FD}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CurtainSystem", "CurtainSystem\CS\CurtainSystem.csproj", "{80502467-3D8F-436D-9E47-AF3702D679FD}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ImportExport", "ImportExport\CS\ImportExport.csproj", "{3505D5A1-24CB-46C3-8077-276BC07757D9}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImportExport", "ImportExport\CS\ImportExport.csproj", "{3505D5A1-24CB-46C3-8077-276BC07757D9}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NewHostedSweep", "NewHostedSweep\CS\NewHostedSweep.csproj", "{BB5C52F3-93FC-441C-91D4-758182CC2747}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NewHostedSweep", "NewHostedSweep\CS\NewHostedSweep.csproj", "{BB5C52F3-93FC-441C-91D4-758182CC2747}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoofsRooms", "RoofsRooms\CS\RoofsRooms.csproj", "{B43AE59E-2E7B-48B9-B1B3-EE4412BF0198}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RoofsRooms", "RoofsRooms\CS\RoofsRooms.csproj", "{B43AE59E-2E7B-48B9-B1B3-EE4412BF0198}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EventsMonitor", "Events\EventsMonitor\CS\EventsMonitor.csproj", "{AEBC5F6D-38D3-407D-A92A-E0B3A4BC480E}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventsMonitor", "Events\EventsMonitor\CS\EventsMonitor.csproj", "{AEBC5F6D-38D3-407D-A92A-E0B3A4BC480E}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CancelSave", "Events\CancelSave\CS\CancelSave.csproj", "{BDF1D215-55C6-4645-8232-FA4C0E3F33EE}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CancelSave", "Events\CancelSave\CS\CancelSave.csproj", "{BDF1D215-55C6-4645-8232-FA4C0E3F33EE}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PrintLog", "Events\PrintLog\CS\PrintLog.csproj", "{BE595C88-8880-4497-8043-22A060ED3EB8}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PrintLog", "Events\PrintLog\CS\PrintLog.csproj", "{BE595C88-8880-4497-8043-22A060ED3EB8}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TraverseSystem", "TraverseSystem\CS\TraverseSystem.csproj", "{0D4A84F6-2CC9-48D6-B3CE-7C5AF0E69F7B}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TraverseSystem", "TraverseSystem\CS\TraverseSystem.csproj", "{0D4A84F6-2CC9-48D6-B3CE-7C5AF0E69F7B}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoUpdate", "Events\AutoUpdate\CS\AutoUpdate.csproj", "{51C02F4D-C136-4C79-B2BB-3FC80546164D}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AutoUpdate", "Events\AutoUpdate\CS\AutoUpdate.csproj", "{51C02F4D-C136-4C79-B2BB-3FC80546164D}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoParameter", "FamilyCreation\AutoParameter\CS\AutoParameter.csproj", "{EE7D1F8F-8DD3-4627-A00F-12F683066A1D}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AutoParameter", "FamilyCreation\AutoParameter\CS\AutoParameter.csproj", "{EE7D1F8F-8DD3-4627-A00F-12F683066A1D}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AllViews", "AllViews\CS\AllViews.csproj", "{F749EB68-5DEE-4029-8669-49CE5C32CE20}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AllViews", "AllViews\CS\AllViews.csproj", "{F749EB68-5DEE-4029-8669-49CE5C32CE20}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AvoidObstruction", "AvoidObstruction\CS\AvoidObstruction.csproj", "{07E03997-2E23-4CA5-9EF1-1EE7887FFA24}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AvoidObstruction", "AvoidObstruction\CS\AvoidObstruction.csproj", "{07E03997-2E23-4CA5-9EF1-1EE7887FFA24}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoJoin", "FamilyCreation\AutoJoin\CS\AutoJoin.csproj", "{B0F48DFB-6DAF-4451-8E7C-2617485D7CE0}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AutoJoin", "FamilyCreation\AutoJoin\CS\AutoJoin.csproj", "{B0F48DFB-6DAF-4451-8E7C-2617485D7CE0}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CreateAirHandler", "FamilyCreation\CreateAirHandler\CS\CreateAirHandler.csproj", "{3251A8F4-57C3-4D4E-B5C8-6E7AC7D4E17A}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CreateAirHandler", "FamilyCreation\CreateAirHandler\CS\CreateAirHandler.csproj", "{3251A8F4-57C3-4D4E-B5C8-6E7AC7D4E17A}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TypeRegeneration", "FamilyCreation\TypeRegeneration\CS\TypeRegeneration.csproj", "{17799695-A334-4ACD-AD5E-2869DF5743FE}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TypeRegeneration", "FamilyCreation\TypeRegeneration\CS\TypeRegeneration.csproj", "{17799695-A334-4ACD-AD5E-2869DF5743FE}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ValidateParameters", "FamilyCreation\ValidateParameters\CS\ValidateParameters.csproj", "{946EF9FD-9591-4C0A-9F2B-082130915255}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ValidateParameters", "FamilyCreation\ValidateParameters\CS\ValidateParameters.csproj", "{946EF9FD-9591-4C0A-9F2B-082130915255}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoRoute", "AutoRoute\CS\AutoRoute.csproj", "{274B58C1-4995-4AC8-BDD8-BFFC52EE63AB}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AutoRoute", "AutoRoute\CS\AutoRoute.csproj", "{274B58C1-4995-4AC8-BDD8-BFFC52EE63AB}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ribbon", "Ribbon\CS\Ribbon.csproj", "{4E18C36C-1D14-4DF2-B68E-E7D46D425A8B}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ribbon", "Ribbon\CS\Ribbon.csproj", "{4E18C36C-1D14-4DF2-B68E-E7D46D425A8B}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowWizard", "FamilyCreation\WindowWizard\CS\WindowWizard.csproj", "{4E7A12AC-56C6-4A73-8F03-404FAB98CC06}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WindowWizard", "FamilyCreation\WindowWizard\CS\WindowWizard.csproj", "{4E7A12AC-56C6-4A73-8F03-404FAB98CC06}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GenericModelCreation", "FamilyCreation\GenericModelCreation\CS\GenericModelCreation.csproj", "{185F7159-ADCC-4459-BBC4-2C39EB64FCFF}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GenericModelCreation", "FamilyCreation\GenericModelCreation\CS\GenericModelCreation.csproj", "{185F7159-ADCC-4459-BBC4-2C39EB64FCFF}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoStamp", "Events\AutoStamp\CS\AutoStamp.csproj", "{BE595C88-8880-4497-8088-22A060ED3EB8}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AutoStamp", "Events\AutoStamp\CS\AutoStamp.csproj", "{BE595C88-8880-4497-8088-22A060ED3EB8}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DWGFamilyCreation", "FamilyCreation\DWGFamilyCreation\CS\DWGFamilyCreation.csproj", "{D39B82F4-2BDA-443B-A707-4EBDE04A86FA}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DWGFamilyCreation", "FamilyCreation\DWGFamilyCreation\CS\DWGFamilyCreation.csproj", "{D39B82F4-2BDA-443B-A707-4EBDE04A86FA}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RayTraceBounce", "FindReferencesByDirection\RaytraceBounce\CS\RayTraceBounce.csproj", "{73D0EC8C-8494-4A60-B54F-CD8AE698874B}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RayTraceBounce", "FindReferencesByDirection\RaytraceBounce\CS\RayTraceBounce.csproj", "{73D0EC8C-8494-4A60-B54F-CD8AE698874B}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ViewPrinter", "ViewPrinter\CS\ViewPrinter.csproj", "{15D03F50-CF7C-4173-9577-A4B36012FF90}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ViewPrinter", "ViewPrinter\CS\ViewPrinter.csproj", "{15D03F50-CF7C-4173-9577-A4B36012FF90}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RvtSamples", "RvtSamples\CS\RvtSamples.csproj", "{61CD7BAA-7E72-4239-B3DC-616123EACE15}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RvtSamples", "RvtSamples\CS\RvtSamples.csproj", "{61CD7BAA-7E72-4239-B3DC-616123EACE15}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MeasurePanelArea", "Massing\MeasurePanelArea\CS\MeasurePanelArea.csproj", "{C8EF18E0-E9E6-4F81-83DC-1581BABBB057}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MeasurePanelArea", "Massing\MeasurePanelArea\CS\MeasurePanelArea.csproj", "{C8EF18E0-E9E6-4F81-83DC-1581BABBB057}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NewForm", "Massing\NewForm\CS\NewForm.csproj", "{DA7BD106-7313-443F-8AC6-18A1FF28ECE4}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NewForm", "Massing\NewForm\CS\NewForm.csproj", "{DA7BD106-7313-443F-8AC6-18A1FF28ECE4}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PanelEdgeLengthAngle", "Massing\PanelEdgeLengthAngle\CS\PanelEdgeLengthAngle.csproj", "{5DB5F654-5829-4B0E-BB6B-E3895625E49A}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PanelEdgeLengthAngle", "Massing\PanelEdgeLengthAngle\CS\PanelEdgeLengthAngle.csproj", "{5DB5F654-5829-4B0E-BB6B-E3895625E49A}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CreateTruss", "FamilyCreation\CreateTruss\CS\CreateTruss.csproj", "{8D917AFE-5CCC-4FA7-91C0-CD0C216AF7A3}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CreateTruss", "FamilyCreation\CreateTruss\CS\CreateTruss.csproj", "{8D917AFE-5CCC-4FA7-91C0-CD0C216AF7A3}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DistanceToPanels", "Massing\DistanceToPanels\CS\DistanceToPanels.csproj", "{5903E05A-67E3-4E91-B3BC-8207F0A7F274}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DistanceToPanels", "Massing\DistanceToPanels\CS\DistanceToPanels.csproj", "{5903E05A-67E3-4E91-B3BC-8207F0A7F274}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ManipulateForm", "Massing\ManipulateForm\CS\ManipulateForm.csproj", "{BB2EF34C-8AF6-439D-B8D3-3CE31FA6B4E7}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ManipulateForm", "Massing\ManipulateForm\CS\ManipulateForm.csproj", "{BB2EF34C-8AF6-439D-B8D3-3CE31FA6B4E7}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HelloRevit", "HelloRevit", "{E14C3E61-A945-4A91-BCE8-CDFDA18372F3}"
|
||||
EndProject
|
||||
@@ -277,33 +277,33 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CS", "CS", "{B612854F-312B-
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "VB.NET", "VB.NET", "{5CB6418D-5AF7-4731-887D-9B4A905054CE}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloRevit", "HelloRevit\CS\HelloRevit.csproj", "{BE595C77-7550-4497-8043-22A060ED3EB7}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HelloRevit", "HelloRevit\CS\HelloRevit.csproj", "{BE595C77-7550-4497-8043-22A060ED3EB7}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "HelloRevit", "HelloRevit\VB.NET\HelloRevit.vbproj", "{A1D73F2A-54CE-43CE-B80A-708AAED3F4D1}"
|
||||
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "HelloRevit", "HelloRevit\VB.NET\HelloRevit.vbproj", "{A1D73F2A-54CE-43CE-B80A-708AAED3F4D1}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Selections", "Selections\CS\Selections.csproj", "{E145CA05-3742-4CFA-95C3-EB4ACC85E4A6}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Selections", "Selections\CS\Selections.csproj", "{E145CA05-3742-4CFA-95C3-EB4ACC85E4A6}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChangesMonitor", "DocumentChanged\CS\ChangesMonitor.csproj", "{1C6B9634-D463-43C1-A8C5-B94AE7615384}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ChangesMonitor", "DocumentChanged\CS\ChangesMonitor.csproj", "{1C6B9634-D463-43C1-A8C5-B94AE7615384}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PanelSchedule", "PanelSchedule\CS\PanelSchedule.csproj", "{7049E1C8-65DE-4D14-99EA-68DBC94ECEAB}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PanelSchedule", "PanelSchedule\CS\PanelSchedule.csproj", "{7049E1C8-65DE-4D14-99EA-68DBC94ECEAB}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PointCurveCreation", "Massing\PointCurveCreation\CS\PointCurveCreation.csproj", "{0413877F-9549-46A7-8BD5-C6583E74764A}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PointCurveCreation", "Massing\PointCurveCreation\CS\PointCurveCreation.csproj", "{0413877F-9549-46A7-8BD5-C6583E74764A}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ParameterValuesFromImage", "Massing\ParameterValuesFromImage\CS\ParameterValuesFromImage.csproj", "{D58D3CE6-43A4-4EBD-B034-16EFB738FA37}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ParameterValuesFromImage", "Massing\ParameterValuesFromImage\CS\ParameterValuesFromImage.csproj", "{D58D3CE6-43A4-4EBD-B034-16EFB738FA37}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MaterialQuantities", "MaterialQuantities\CS\MaterialQuantities.csproj", "{54451AFB-95BC-4337-B801-6FB4B3A92046}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialQuantities", "MaterialQuantities\CS\MaterialQuantities.csproj", "{54451AFB-95BC-4337-B801-6FB4B3A92046}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FindColumns", "FindReferencesByDirection\FindColumns\CS\FindColumns.csproj", "{E649C439-646C-4E9F-A103-DA63DCC7FAE3}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FindColumns", "FindReferencesByDirection\FindColumns\CS\FindColumns.csproj", "{E649C439-646C-4E9F-A103-DA63DCC7FAE3}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MeasureHeight", "FindReferencesByDirection\MeasureHeight\CS\MeasureHeight.csproj", "{02A9B46A-9B61-43D7-87D9-4176CC730997}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MeasureHeight", "FindReferencesByDirection\MeasureHeight\CS\MeasureHeight.csproj", "{02A9B46A-9B61-43D7-87D9-4176CC730997}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ErrorHandling", "ErrorHandling\CS\ErrorHandling.csproj", "{319AB620-9C6F-4F1B-9A9A-2543F4283AAA}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ErrorHandling", "ErrorHandling\CS\ErrorHandling.csproj", "{319AB620-9C6F-4F1B-9A9A-2543F4283AAA}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ElementFilter", "ElementFilter", "{1054F3C7-43DB-472D-9E8B-BD91EB41F8FC}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ViewFilters", "ElementFilter\ViewFilters\CS\ViewFilters.csproj", "{4FCBF0C9-EC78-426F-8563-C81EF2541DF7}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ViewFilters", "ElementFilter\ViewFilters\CS\ViewFilters.csproj", "{4FCBF0C9-EC78-426F-8563-C81EF2541DF7}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DirectionCalculation", "DirectionCalculation\CS\DirectionCalculation.csproj", "{07300EC6-1A6A-4C7E-8022-A839210014E3}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DirectionCalculation", "DirectionCalculation\CS\DirectionCalculation.csproj", "{07300EC6-1A6A-4C7E-8022-A839210014E3}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "FindReferencesByDirection", "FindReferencesByDirection", "{B1E03BF7-C7EF-4906-8964-2469D9178680}"
|
||||
EndProject
|
||||
@@ -311,158 +311,158 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Massing", "Massing", "{D9E4
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DistanceToSurfaces", "AnalysisVisualizationFramework\DistanceToSurfaces\CS\DistanceToSurfaces.csproj", "{5895043F-7D42-4990-9497-108FD0D8947E}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpatialFieldGradient", "AnalysisVisualizationFramework\SpatialFieldGradient\CS\SpatialFieldGradient.csproj", "{493640CC-B6A2-4746-ADA1-9319B3C003FB}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SpatialFieldGradient", "AnalysisVisualizationFramework\SpatialFieldGradient\CS\SpatialFieldGradient.csproj", "{493640CC-B6A2-4746-ADA1-9319B3C003FB}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DynamicModelUpdate", "DynamicModelUpdate\CS\DynamicModelUpdate.csproj", "{7703880C-62D5-477E-BB6B-D8822E7F4249}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DynamicModelUpdate", "DynamicModelUpdate\CS\DynamicModelUpdate.csproj", "{7703880C-62D5-477E-BB6B-D8822E7F4249}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SolidSolidCut", "SolidSolidCut\CS\SolidSolidCut.csproj", "{60A5EA87-088C-47CD-9B0A-B9B62334B978}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SolidSolidCut", "SolidSolidCut\CS\SolidSolidCut.csproj", "{60A5EA87-088C-47CD-9B0A-B9B62334B978}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DividedSurfaceByIntersects", "Massing\DividedSurfaceByIntersects\CS\DividedSurfaceByIntersects.csproj", "{0FFDC8F7-AE63-4792-9FBC-B2A55FB9CF5A}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CreateFillPattern", "CreateFillPattern\CS\CreateFillPattern.csproj", "{1807B365-AA75-46EA-A27D-5748A849E699}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CreateFillPattern", "CreateFillPattern\CS\CreateFillPattern.csproj", "{1807B365-AA75-46EA-A27D-5748A849E699}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiplanarRebar", "MultiplanarRebar\CS\MultiplanarRebar.csproj", "{463F71D3-E23F-43FE-A526-8021F0CD3BB0}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MultiplanarRebar", "MultiplanarRebar\CS\MultiplanarRebar.csproj", "{463F71D3-E23F-43FE-A526-8021F0CD3BB0}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExtensibleStorageManager", "ExtensibleStorageManager\ExtensibleStorageManager\CS\ExtensibleStorageManager.csproj", "{D80CD23C-5D40-4BE6-8940-5CE791DEF719}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ExtensibleStorageManager", "ExtensibleStorageManager\ExtensibleStorageManager\CS\ExtensibleStorageManager.csproj", "{D80CD23C-5D40-4BE6-8940-5CE791DEF719}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SchemaWrapperTools", "ExtensibleStorageManager\SchemaWrapperTools\CS\SchemaWrapperTools.csproj", "{D5227927-E688-4996-BEEE-7DCA91A7365B}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SchemaWrapperTools", "ExtensibleStorageManager\SchemaWrapperTools\CS\SchemaWrapperTools.csproj", "{D5227927-E688-4996-BEEE-7DCA91A7365B}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EnergyAnalysisModel", "GeometryAPI\EnergyAnalysisModel\CS\EnergyAnalysisModel.csproj", "{028B7EED-3CAE-4D38-9254-82B2F7083CA4}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EnergyAnalysisModel", "GeometryAPI\EnergyAnalysisModel\CS\EnergyAnalysisModel.csproj", "{028B7EED-3CAE-4D38-9254-82B2F7083CA4}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PointCloudEngine", "PointCloudEngine\CS\PointCloudEngine.csproj", "{FD166650-1867-470F-BB1E-DEBC48E45A7C}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PointCloudEngine", "PointCloudEngine\CS\PointCloudEngine.csproj", "{FD166650-1867-470F-BB1E-DEBC48E45A7C}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PerformanceAdviserControl", "PerformanceAdviserControl\CS\PerformanceAdviserControl.csproj", "{630906E4-D917-416E-80B6-B9F64279AE70}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PerformanceAdviserControl", "PerformanceAdviserControl\CS\PerformanceAdviserControl.csproj", "{630906E4-D917-416E-80B6-B9F64279AE70}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultithreadedCalculation", "AnalysisVisualizationFramework\MultithreadedCalculation\CS\MultithreadedCalculation.csproj", "{498C1FF1-3FA1-4146-836D-436914AFDC4B}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MultithreadedCalculation", "AnalysisVisualizationFramework\MultithreadedCalculation\CS\MultithreadedCalculation.csproj", "{498C1FF1-3FA1-4146-836D-436914AFDC4B}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComputedSymbolGeometry", "GeometryAPI\ComputedSymbolGeometry\CS\ComputedSymbolGeometry.csproj", "{40B42DD4-B031-4F67-B4DF-032E93564603}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ComputedSymbolGeometry", "GeometryAPI\ComputedSymbolGeometry\CS\ComputedSymbolGeometry.csproj", "{40B42DD4-B031-4F67-B4DF-032E93564603}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeometryCreation_BooleanOperation", "GeometryAPI\GeometryCreation_BooleanOperation\CS\GeometryCreation_BooleanOperation.csproj", "{2C458098-01F5-40CA-90F5-3368CF8EB6BD}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GeometryCreation_BooleanOperation", "GeometryAPI\GeometryCreation_BooleanOperation\CS\GeometryCreation_BooleanOperation.csproj", "{2C458098-01F5-40CA-90F5-3368CF8EB6BD}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProximityDetection_WallJoinControl", "GeometryAPI\ProximityDetection_WallJoinControl\CS\ProximityDetection_WallJoinControl.csproj", "{C89EA386-EFDF-42DB-9B5D-045B9D4117DA}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProximityDetection_WallJoinControl", "GeometryAPI\ProximityDetection_WallJoinControl\CS\ProximityDetection_WallJoinControl.csproj", "{C89EA386-EFDF-42DB-9B5D-045B9D4117DA}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RevitAddInUtilitySample", "ExternalCommand\CS\RevitAddInUtilitySample\RevitAddInUtilitySample.csproj", "{1FF1330C-F41E-4C18-9000-E78FB24F3AD5}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RevitAddInUtilitySample", "ExternalCommand\CS\RevitAddInUtilitySample\RevitAddInUtilitySample.csproj", "{1FF1330C-F41E-4C18-9000-E78FB24F3AD5}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExternalCommandRegistration", "ExternalCommand\CS\ExternalCommandRegistration\ExternalCommandRegistration.csproj", "{60316DFC-53FD-42B4-BBCE-25FD3D337815}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ExternalCommandRegistration", "ExternalCommand\CS\ExternalCommandRegistration\ExternalCommandRegistration.csproj", "{60316DFC-53FD-42B4-BBCE-25FD3D337815}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WorkThread", "MultiThreading\WorkThread\CS\WorkThread.csproj", "{20723726-7C67-4AA0-B404-A03027C7A770}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WorkThread", "MultiThreading\WorkThread\CS\WorkThread.csproj", "{20723726-7C67-4AA0-B404-A03027C7A770}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModelessForm_ExternalEvent", "ModelessDialog\ModelessForm_ExternalEvent\CS\ModelessForm_ExternalEvent.csproj", "{43F92905-6F3B-4C1C-945D-C661E6DAFDDC}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ModelessForm_ExternalEvent", "ModelessDialog\ModelessForm_ExternalEvent\CS\ModelessForm_ExternalEvent.csproj", "{43F92905-6F3B-4C1C-945D-C661E6DAFDDC}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModelessForm_IdlingEvent", "ModelessDialog\ModelessForm_IdlingEvent\CS\ModelessForm_IdlingEvent.csproj", "{FF2F1165-E481-4291-9A93-24AFB379DD62}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ModelessForm_IdlingEvent", "ModelessDialog\ModelessForm_IdlingEvent\CS\ModelessForm_IdlingEvent.csproj", "{FF2F1165-E481-4291-9A93-24AFB379DD62}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProgressNotifier", "Events\ProgressNotifier\CS\ProgressNotifier.csproj", "{297F51FB-5CDD-4A40-93A3-4C6DC4839EEE}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProgressNotifier", "Events\ProgressNotifier\CS\ProgressNotifier.csproj", "{297F51FB-5CDD-4A40-93A3-4C6DC4839EEE}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoutingPreferenceTools", "RoutingPreferenceTools\CS\RoutingPreferenceTools.csproj", "{7C33A55E-6044-48EE-A598-C4580D7C5DD3}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RoutingPreferenceTools", "RoutingPreferenceTools\CS\RoutingPreferenceTools.csproj", "{7C33A55E-6044-48EE-A598-C4580D7C5DD3}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StairsAutomation", "StairsAutomation\CS\StairsAutomation.csproj", "{3AFBB480-F48A-4E07-B20E-A776318404A6}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StairsAutomation", "StairsAutomation\CS\StairsAutomation.csproj", "{3AFBB480-F48A-4E07-B20E-A776318404A6}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DisableCommand", "DisableCommand\CS\DisableCommand.csproj", "{EE2E0C60-3020-4ED3-9DCF-B55FBFBA36F7}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DisableCommand", "DisableCommand\CS\DisableCommand.csproj", "{EE2E0C60-3020-4ED3-9DCF-B55FBFBA36F7}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ScheduleCreation", "ScheduleCreation\CS\ScheduleCreation.csproj", "{541DE414-1696-48D4-BE72-9E52077CDACD}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ScheduleCreation", "ScheduleCreation\CS\ScheduleCreation.csproj", "{541DE414-1696-48D4-BE72-9E52077CDACD}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeFormElement", "FreeFormElement\CS\FreeFormElement.csproj", "{B0D3B3DA-011A-4215-B06D-E83914C2C237}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FreeFormElement", "FreeFormElement\CS\FreeFormElement.csproj", "{B0D3B3DA-011A-4215-B06D-E83914C2C237}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DisplacementElementAnimation", "DisplacementElementAnimation\CS\DisplacementElementAnimation.csproj", "{2C4DBF06-7004-4DC9-9DEA-3296E7993735}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DisplacementElementAnimation", "DisplacementElementAnimation\CS\DisplacementElementAnimation.csproj", "{2C4DBF06-7004-4DC9-9DEA-3296E7993735}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PostCommandWorkflow", "PostCommandWorkflow\CS\PostCommandWorkflow.csproj", "{2EDE57B7-FA79-479A-922A-C0ED1D1C5625}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PostCommandWorkflow", "PostCommandWorkflow\CS\PostCommandWorkflow.csproj", "{2EDE57B7-FA79-479A-922A-C0ED1D1C5625}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ScheduleAutomaticFormatter", "ScheduleAutomaticFormatter\CS\ScheduleAutomaticFormatter.csproj", "{E120542B-B6DD-4FF7-8071-37BACB04DDE4}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ScheduleAutomaticFormatter", "ScheduleAutomaticFormatter\CS\ScheduleAutomaticFormatter.csproj", "{E120542B-B6DD-4FF7-8071-37BACB04DDE4}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ScheduleToHTML", "ScheduleToHTML\CS\ScheduleToHTML.csproj", "{6DAAF250-FCEE-4D36-9E26-F0155A31F779}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ScheduleToHTML", "ScheduleToHTML\CS\ScheduleToHTML.csproj", "{6DAAF250-FCEE-4D36-9E26-F0155A31F779}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DuplicateViews", "DuplicateViews\CS\DuplicateViews.csproj", "{073BC489-161F-4504-A94A-4C48F2D3AB54}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DuplicateViews", "DuplicateViews\CS\DuplicateViews.csproj", "{073BC489-161F-4504-A94A-4C48F2D3AB54}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExtensibleStorageUtility", "ExtensibleStorageUtility\CS\ExtensibleStorageUtility.csproj", "{A7FEE9A4-D5B5-4080-8EC8-B54FB2516805}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ExtensibleStorageUtility", "ExtensibleStorageUtility\CS\ExtensibleStorageUtility.csproj", "{A7FEE9A4-D5B5-4080-8EC8-B54FB2516805}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SinePlotter", "SinePlotter\CS\SinePlotter.csproj", "{7E9BA4F7-BDEB-4185-B589-A3A80AF512DC}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SinePlotter", "SinePlotter\CS\SinePlotter.csproj", "{7E9BA4F7-BDEB-4185-B589-A3A80AF512DC}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Units", "Units\CS\Units.csproj", "{5FD97756-A1E4-493C-93B7-36D9A8F36839}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Units", "Units\CS\Units.csproj", "{5FD97756-A1E4-493C-93B7-36D9A8F36839}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UIAPI", "UIAPI\CS\UIAPI.csproj", "{4B81280E-72CB-4414-A4F7-C2CAC7FEDBF5}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UIAPI", "UIAPI\CS\UIAPI.csproj", "{4B81280E-72CB-4414-A4F7-C2CAC7FEDBF5}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinderStairs", "WinderStairs\CS\WinderStairs.csproj", "{3DEDE48B-7FC9-4923-844C-3AE7A08D55E6}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WinderStairs", "WinderStairs\CS\WinderStairs.csproj", "{3DEDE48B-7FC9-4923-844C-3AE7A08D55E6}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DockableDialogs", "DockableDialogs\CS\DockableDialogs.csproj", "{1807B361-AA75-16EA-A27D-5748A849E699}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DockableDialogs", "DockableDialogs\CS\DockableDialogs.csproj", "{1807B361-AA75-16EA-A27D-5748A849E699}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GetSetDefaultTypes", "GetSetDefaultTypes\CS\GetSetDefaultTypes.csproj", "{256B7C47-FE2A-40A0-877D-664D63ACA41D}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GetSetDefaultTypes", "GetSetDefaultTypes\CS\GetSetDefaultTypes.csproj", "{256B7C47-FE2A-40A0-877D-664D63ACA41D}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReadonlySharedParameters", "ReadonlySharedParameters\CS\ReadonlySharedParameters.csproj", "{2B105077-D98A-4A86-8FED-E04985FE3E67}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ReadonlySharedParameters", "ReadonlySharedParameters\CS\ReadonlySharedParameters.csproj", "{2B105077-D98A-4A86-8FED-E04985FE3E67}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FamilyParametersOrder", "FamilyParametersOrder\CS\FamilyParametersOrder.csproj", "{D56B1276-07D2-4025-868E-8E7BC3BC539F}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FamilyParametersOrder", "FamilyParametersOrder\CS\FamilyParametersOrder.csproj", "{D56B1276-07D2-4025-868E-8E7BC3BC539F}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExternalResourceDBServer", "ExternalResourceServer\ExternalResourceDBServer\CS\ExternalResourceDBServer.csproj", "{77CE4920-1BE6-4174-88BB-2892E71ACD11}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ExternalResourceDBServer", "ExternalResourceServer\ExternalResourceDBServer\CS\ExternalResourceDBServer.csproj", "{77CE4920-1BE6-4174-88BB-2892E71ACD11}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExternalResourceUIServer", "ExternalResourceServer\ExternalResourceUIServer\CS\ExternalResourceUIServer.csproj", "{1BA33B5D-C64B-4AA3-A367-240A349E47FE}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ExternalResourceUIServer", "ExternalResourceServer\ExternalResourceUIServer\CS\ExternalResourceUIServer.csproj", "{1BA33B5D-C64B-4AA3-A367-240A349E47FE}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DimensionLeaderEnd", "DimensionLeaderEnd\CS\DimensionLeaderEnd.csproj", "{4E3C160F-1FC8-4BD7-8E01-B62C58E79CD4}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DimensionLeaderEnd", "DimensionLeaderEnd\CS\DimensionLeaderEnd.csproj", "{4E3C160F-1FC8-4BD7-8E01-B62C58E79CD4}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DatumsModification", "DatumsModification\CS\DatumsModification.csproj", "{156515B4-F5FE-4CDD-8B18-E96F4090CA20}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DatumsModification", "DatumsModification\CS\DatumsModification.csproj", "{156515B4-F5FE-4CDD-8B18-E96F4090CA20}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FabricationPartLayout", "FabricationPartLayout\CS\FabricationPartLayout.csproj", "{806D4F74-F72D-40C2-BA7F-4DF99980D601}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FabricationPartLayout", "FabricationPartLayout\CS\FabricationPartLayout.csproj", "{806D4F74-F72D-40C2-BA7F-4DF99980D601}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GenericStructuralConnection", "GenericStructuralConnection\CS\GenericStructuralConnection.csproj", "{2B65D97C-DEED-4FFF-9E02-03B6BB6BEF2A}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GenericStructuralConnection", "GenericStructuralConnection\CS\GenericStructuralConnection.csproj", "{2B65D97C-DEED-4FFF-9E02-03B6BB6BEF2A}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RebarContainerAnyShapeType", "RebarContainerAnyShapeType\CS\RebarContainerAnyShapeType.csproj", "{BC7C97A7-C5EA-443C-9545-4B845038C09E}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RebarContainerAnyShapeType", "RebarContainerAnyShapeType\CS\RebarContainerAnyShapeType.csproj", "{BC7C97A7-C5EA-443C-9545-4B845038C09E}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CapitalizeAllTextNotes", "CapitalizeAllTextNotes\CS\CapitalizeAllTextNotes.csproj", "{98357A11-0B43-452E-998C-AD7981D8E19A}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CapitalizeAllTextNotes", "CapitalizeAllTextNotes\CS\CapitalizeAllTextNotes.csproj", "{98357A11-0B43-452E-998C-AD7981D8E19A}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PlacementOptions", "PlacementOptions\CS\PlacementOptions.csproj", "{A72A0EF8-5741-4A44-81DA-4F3497C42B74}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PlacementOptions", "PlacementOptions\CS\PlacementOptions.csproj", "{A72A0EF8-5741-4A44-81DA-4F3497C42B74}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BRepBuilderExample", "GeometryAPI\BRepBuilderExample\CS\BRepBuilderExample.csproj", "{64730D77-160D-4DA4-9708-66FDD4CAF8FE}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BRepBuilderExample", "GeometryAPI\BRepBuilderExample\CS\BRepBuilderExample.csproj", "{64730D77-160D-4DA4-9708-66FDD4CAF8FE}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RebarFreeForm", "RebarFreeForm\CS\RebarFreeForm.csproj", "{08C2DFB2-27F1-4A40-BE07-488441934FE7}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RebarFreeForm", "RebarFreeForm\CS\RebarFreeForm.csproj", "{08C2DFB2-27F1-4A40-BE07-488441934FE7}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DuplicateGraphics", "DuplicateGraphics\CS\DuplicateGraphics.csproj", "{B6D202D5-DCEF-4B5B-A2A7-843C9DFD9EDD}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DuplicateGraphics", "DuplicateGraphics\CS\DuplicateGraphics.csproj", "{B6D202D5-DCEF-4B5B-A2A7-843C9DFD9EDD}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AppearanceAssetEditing", "AppearanceAssetEditing\CS\AppearanceAssetEditing.csproj", "{A2708398-8FA7-4582-B15A-D57D7058D3C2}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AppearanceAssetEditing", "AppearanceAssetEditing\CS\AppearanceAssetEditing.csproj", "{A2708398-8FA7-4582-B15A-D57D7058D3C2}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SampleCommandsSteelElements", "SampleCommandsSteelElements\CS\SampleCommandsSteelElements.csproj", "{D0222DA2-F296-4644-A26E-F9EB3B2BBAF4}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SampleCommandsSteelElements", "SampleCommandsSteelElements\CS\SampleCommandsSteelElements.csproj", "{D0222DA2-F296-4644-A26E-F9EB3B2BBAF4}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AttachedDetailGroup", "AttachedDetailGroup\CS\AttachedDetailGroup.csproj", "{D5141B38-2D06-4964-BF75-328691347361}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AttachedDetailGroup", "AttachedDetailGroup\CS\AttachedDetailGroup.csproj", "{D5141B38-2D06-4964-BF75-328691347361}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PathOfTravel", "PathOfTravel\CS\PathOfTravel.csproj", "{178B68F6-2120-448F-BEAB-84B824604F8D}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PathOfTravel", "PathOfTravel\CS\PathOfTravel.csproj", "{178B68F6-2120-448F-BEAB-84B824604F8D}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Custom2DExporter", "CustomExporter\Custom2DExporter\CS\Custom2DExporter.csproj", "{4DB30086-DE87-4205-8A8E-E2A61BBA681B}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Custom2DExporter", "CustomExporter\Custom2DExporter\CS\Custom2DExporter.csproj", "{4DB30086-DE87-4205-8A8E-E2A61BBA681B}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ViewTemplateCreation", "ViewTemplateCreation\CS\ViewTemplateCreation.csproj", "{C447128E-26AC-4552-8F17-B40B8DC6C3CC}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ViewTemplateCreation", "ViewTemplateCreation\CS\ViewTemplateCreation.csproj", "{C447128E-26AC-4552-8F17-B40B8DC6C3CC}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CivilAlignments", "CivilAlignments\CS\CivilAlignments.csproj", "{E2B377C6-1B67-4777-9532-EE37BA4E84DA}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CivilAlignments", "CivilAlignments\CS\CivilAlignments.csproj", "{E2B377C6-1B67-4777-9532-EE37BA4E84DA}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColorFill", "ColorFill\CS\ColorFill.csproj", "{CC412DB6-8DFA-4A73-B0D4-5531043C4F76}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ColorFill", "ColorFill\CS\ColorFill.csproj", "{CC412DB6-8DFA-4A73-B0D4-5531043C4F76}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CloudAPISample", "CloudAPISample\CS\CloudAPISample.csproj", "{8A4EA589-A668-4824-9C1D-56B6A53DE304}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CloudAPISample", "CloudAPISample\CS\CloudAPISample.csproj", "{8A4EA589-A668-4824-9C1D-56B6A53DE304}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UpdateExternallyTaggedBRep", "GeometryAPI\UpdateExternallyTaggedBRep\CS\UpdateExternallyTaggedBRep.csproj", "{E052E98F-A97D-4EFE-BE49-DC7480040616}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UpdateExternallyTaggedBRep", "GeometryAPI\UpdateExternallyTaggedBRep\CS\UpdateExternallyTaggedBRep.csproj", "{E052E98F-A97D-4EFE-BE49-DC7480040616}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InCanvasControlAPI", "InCanvasControlAPI\CS\InCanvasControlAPI.csproj", "{685C2952-1BD0-42D8-B43B-6856A475DF1F}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "InCanvasControlAPI", "InCanvasControlAPI\CS\InCanvasControlAPI.csproj", "{685C2952-1BD0-42D8-B43B-6856A475DF1F}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExportPDFSettingsSample", "ExportPDFSettingsSample\CS\ExportPDFSettingsSample.csproj", "{2A3251E8-790B-45D5-A680-4AE8E794FA7A}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ExportPDFSettingsSample", "ExportPDFSettingsSample\CS\ExportPDFSettingsSample.csproj", "{2A3251E8-790B-45D5-A680-4AE8E794FA7A}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ContextualAnalyticalModel", "ContextualAnalyticalModel\CS\ContextualAnalyticalModel.csproj", "{C9E4D1DC-6FA6-490A-8C6B-4A7D54569E45}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ContextualAnalyticalModel", "ContextualAnalyticalModel\CS\ContextualAnalyticalModel.csproj", "{C9E4D1DC-6FA6-490A-8C6B-4A7D54569E45}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{6A1CC47E-734F-4DE2-8E87-D5F558D5E1D8}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
SheetToView3D\CS\SheetToView3D.csproj = SheetToView3D\CS\SheetToView3D.csproj
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SheetToView3D", "SheetToView3D\CS\SheetToView3D.csproj", "{2885DDD6-703A-4D8A-82BA-D57B3A4C4F43}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SheetToView3D", "SheetToView3D\CS\SheetToView3D.csproj", "{2885DDD6-703A-4D8A-82BA-D57B3A4C4F43}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SelectionChanged", "Events\SelectionChanged\CS\SelectionChanged.csproj", "{7AE980F6-0CE2-42D2-B5EF-6C5EE20D0311}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SelectionChanged", "Events\SelectionChanged\CS\SelectionChanged.csproj", "{7AE980F6-0CE2-42D2-B5EF-6C5EE20D0311}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NetworkPressureLossReport", "NetworkPressureLossReport\CS\NetworkPressureLossReport.csproj", "{D9F2AB5B-1348-421A-9B08-9B4ED74A82CE}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetworkPressureLossReport", "NetworkPressureLossReport\CS\NetworkPressureLossReport.csproj", "{D9F2AB5B-1348-421A-9B08-9B4ED74A82CE}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CreateDuctworkStiffener", "CreateDuctworkStiffener\CS\CreateDuctworkStiffener.csproj", "{117770A2-856F-419E-8ABE-8BBC7A05C26C}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CreateDuctworkStiffener", "CreateDuctworkStiffener\CS\CreateDuctworkStiffener.csproj", "{117770A2-856F-419E-8ABE-8BBC7A05C26C}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Toposolid", "Toposolid\CS\Toposolid.csproj", "{C1F1D064-9582-4DD9-9D41-1197DF1EB5B2}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Toposolid", "Toposolid\CS\Toposolid.csproj", "{C1F1D064-9582-4DD9-9D41-1197DF1EB5B2}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EditSketch", "EditSketch\CS\EditSketch.csproj", "{E7ADDF22-C0E1-4F1A-B114-FD94E3D40FBC}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EditSketch", "EditSketch\CS\EditSketch.csproj", "{E7ADDF22-C0E1-4F1A-B114-FD94E3D40FBC}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ContextMenu", "ContextMenu\CS\ContextMenu.csproj", "{3D972638-1AD1-47F4-A64E-5730E60BFD62}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ContextMenu", "ContextMenu\CS\ContextMenu.csproj", "{3D972638-1AD1-47F4-A64E-5730E60BFD62}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DisallowEndWrapping", "DisallowEndWrapping\CS\DisallowEndWrapping.csproj", "{0EA62C54-FDB2-4C6C-BD17-6C942D82929D}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DisallowEndWrapping", "DisallowEndWrapping\CS\DisallowEndWrapping.csproj", "{0EA62C54-FDB2-4C6C-BD17-6C942D82929D}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NewMacro", "NewMacro\CS\NewMacro.csproj", "{36ED4212-D811-46E7-A88C-933722310275}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NewMacro", "NewMacro\CS\NewMacro.csproj", "{36ED4212-D811-46E7-A88C-933722310275}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
@@ -1056,8 +1056,8 @@ Global
|
||||
{3AF8FED9-7ADB-4797-AF29-D6C5509C1EC9}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{3AF8FED9-7ADB-4797-AF29-D6C5509C1EC9}.Release|x64.ActiveCfg = Release|x64
|
||||
{3AF8FED9-7ADB-4797-AF29-D6C5509C1EC9}.Release|x64.Build.0 = Release|x64
|
||||
{8CA72C14-FB27-42F8-8F6E-18BBCEA10ECB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{8CA72C14-FB27-42F8-8F6E-18BBCEA10ECB}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{8CA72C14-FB27-42F8-8F6E-18BBCEA10ECB}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{8CA72C14-FB27-42F8-8F6E-18BBCEA10ECB}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{8CA72C14-FB27-42F8-8F6E-18BBCEA10ECB}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{8CA72C14-FB27-42F8-8F6E-18BBCEA10ECB}.Debug|x64.Build.0 = Debug|x64
|
||||
{8CA72C14-FB27-42F8-8F6E-18BBCEA10ECB}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
|
||||
Reference in New Issue
Block a user