Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
375 changes: 11 additions & 364 deletions Aras.VS.MethodPlugin.12CSharp/Aras.VS.MethodPlugin.12CSharp.csproj

Large diffs are not rendered by default.

Binary file modified Aras.VS.MethodPlugin.12CSharp/ArasLibs/Aras.ES.dll
Binary file not shown.
Binary file modified Aras.VS.MethodPlugin.12CSharp/ArasLibs/Aras.Server.Core.dll
Binary file not shown.
Binary file modified Aras.VS.MethodPlugin.12CSharp/ArasLibs/Aras.TDF.Base.dll
Binary file not shown.
Binary file modified Aras.VS.MethodPlugin.12CSharp/ArasLibs/Conversion.Base.dll
Binary file not shown.
Binary file modified Aras.VS.MethodPlugin.12CSharp/ArasLibs/ConversionManager.dll
Binary file not shown.
Binary file modified Aras.VS.MethodPlugin.12CSharp/ArasLibs/FileExchangeService.dll
Binary file not shown.
Binary file modified Aras.VS.MethodPlugin.12CSharp/ArasLibs/IOM.dll
Binary file not shown.
Binary file modified Aras.VS.MethodPlugin.12CSharp/ArasLibs/SPConnector.dll
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,22 @@ namespace Common.Attributes
public sealed class ExternalPathAttribute : Attribute
{
private readonly string path;
private readonly int index;

public string Path
{
get { return path; }
}

public ExternalPathAttribute(string path)
public int Index
{
get { return index; }
}

public ExternalPathAttribute(string path, int index)
{
this.path = path;
this.index = index;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,22 @@ namespace Common.Attributes
public sealed class PartialPathAttribute : Attribute
{
private readonly string path;
private readonly int index;

public string Path
{
get { return path; }
}

public PartialPathAttribute(string path)
public int Index
{
get { return index; }
}

public PartialPathAttribute(string path, int index)
{
this.path = path;
this.index = index;
}
}
}

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading