-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIVsPackageFileConfig.cs
More file actions
38 lines (33 loc) · 1.26 KB
/
IVsPackageFileConfig.cs
File metadata and controls
38 lines (33 loc) · 1.26 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
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2021 CodeFactory, LLC
//*****************************************************************************
namespace CodeFactory.VisualStudio.Loader
{
/// <summary>
/// Model definition that tracks information about where files are located and where to place them in the package definition.
/// </summary>
public interface IVsPackageFileConfig
{
/// <summary>
/// Flag that determines if the package library has a debug database file.
/// </summary>
bool HasDebugDatabaseFile { get;}
/// <summary>
/// Physical location of the assembly to add to the package.
/// </summary>
string AssemblyPhysicalPath { get;}
/// <summary>
/// The logical location in the package the assembly will be stored.
/// </summary>
string AssemblyPackagePath { get;}
/// <summary>
/// Physical location of the PDB to add to the package.
/// </summary>
string PDBPhysicalPath { get;}
/// <summary>
/// The logical location in the package the PDB will be stored.
/// </summary>
string PDBPackagePath { get;}
}
}