-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfrastructure.nuspec
More file actions
37 lines (37 loc) · 2.15 KB
/
Infrastructure.nuspec
File metadata and controls
37 lines (37 loc) · 2.15 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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Onpoint.Infrastructure</id>
<title>Onpoint Infrastructure</title>
<version>0.4.9.0</version>
<authors>Onpoint On Demand</authors>
<owners>Onpoint On Demand</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Generic support for IOC/DI, logging, data etc.
The default implementation is NLog and CastleWindsor.
If you would like to use log4net or a different container, reference the Core project
and the logging and container of your choice.</description>
<summary>Onpoint Infrastructure for .NET Projects (Debug)</summary>
<dependencies>
<dependency id="NLog" version="2.0.0.2000" />
<dependency id="Castle.Core" version="3.0.0.2001" />
<dependency id="Castle.Windsor" version="3.0.0.2001" />
</dependencies>
<tags>onpoint</tags>
</metadata>
<files>
<file src="BuildOutput\bin\Infrastructure.Core.dll" target="lib\net40-full" />
<file src="BuildOutput\bin\Infrastructure.Container.CastleWindsor.dll" target="lib\net40-full" />
<file src="BuildOutput\bin\Infrastructure.Logging.NLog.dll" target="lib\net40-full" />
<file src="BuildOutput\bin\Infrastructure.Logging.log4net.dll" target="tools\optionDlls" />
<file src="BuildOutput\bin\Infrastructure.Testing.dll" target="tools\optionDlls" />
<file src="BuildOutput\bin\Infrastructure.Data.dll" target="tools\optionDlls" />
<file src="BuildOutput\bin\Infrastructure.Core.pdb" target="lib\net40-full" />
<file src="BuildOutput\bin\Infrastructure.Container.CastleWindsor.pdb" target="lib\net40-full" />
<file src="BuildOutput\bin\Infrastructure.Logging.NLog.pdb" target="lib\net40-full" />
<file src="BuildOutput\bin\Infrastructure.Logging.log4net.pdb" target="tools\optionDlls" />
<file src="BuildOutput\bin\Infrastructure.Testing.pdb" target="tools\optionDlls" />
<file src="BuildOutput\bin\Infrastructure.Data.pdb" target="tools\optionDlls" />
<file src="BuildOutput\src\**\*.cs" target="src" />
</files>
</package>