Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated project template for Aras 12.0 (12.0.0.13341) #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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