-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathVsPackageFileConfig.cs
More file actions
68 lines (60 loc) · 2.08 KB
/
VsPackageFileConfig.cs
File metadata and controls
68 lines (60 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2021 CodeFactory, LLC
//*****************************************************************************
namespace CodeFactory.VisualStudio.Loader
{
/// <summary>
/// Model class that implements the interface <see cref="IVsPackageFileConfig"/>
/// </summary>
public class VsPackageFileConfig:IVsPackageFileConfig
{
private bool _hasDebugDatabaseFile;
private string _assemblyPhysicalPath;
private string _assemblyPackagePath;
private string _pdbPhysicalPath;
private string _pdbPackagePath;
#region Implementation of IVsPackageFileConfig
/// <summary>
/// Flag that determines if the package library has a debug database file.
/// </summary>
public bool HasDebugDatabaseFile
{
get { return _hasDebugDatabaseFile; }
set { _hasDebugDatabaseFile = value; }
}
/// <summary>
/// Physical location of the assembly to add to the package.
/// </summary>
public string AssemblyPhysicalPath
{
get { return _assemblyPhysicalPath; }
set { _assemblyPhysicalPath = value; }
}
/// <summary>
/// The logical location in the package the assembly will be stored.
/// </summary>
public string AssemblyPackagePath
{
get { return _assemblyPackagePath; }
set { _assemblyPackagePath = value; }
}
/// <summary>
/// Physical location of the PDB to add to the package.
/// </summary>
public string PDBPhysicalPath
{
get { return _pdbPhysicalPath; }
set { _pdbPhysicalPath = value; }
}
/// <summary>
/// The logical location in the package the PDB will be stored.
/// </summary>
public string PDBPackagePath
{
get { return _pdbPackagePath; }
set { _pdbPackagePath = value; }
}
#endregion
}
}