-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config-Handling.Net.nuspec
46 lines (43 loc) · 2.35 KB
/
Config-Handling.Net.nuspec
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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<!-- Required elements-->
<id>Config-Handling.Net</id>
<version>1.2.0</version>
<description>ConfigHandling.Net takes care of all your config or options objects. It takes care of saving, loading, and persistence of objects in memory. Config objects are saved in a centralized location.</description>
<authors>Daan Verstraten</authors>
<title>Config-Handling.Net</title>
<!-- Optional elements -->
<copyright>Daan Verstraten 2018</copyright>
<icon>images\icon.png</icon>
<license type="file">LICENSE.txt</license>
<projectUrl>https://github.com/DaanV2/Config-Handling.Net</projectUrl>
<readme>docs\README.md</readme>
<releaseNotes>Fixing config.ini</releaseNotes>
<repository type="git" url="https://github.com/DaanV2/Config-Handling.Net" />
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<tags>config config-management</tags>
<dependencies>
<group targetFramework=".NET5.0" />
<group targetFramework=".NET6.0" />
<group targetFramework=".NETCoreApp3.1" />
<group targetFramework=".NETFramework4.8" />
<group targetFramework=".NETStandard2.0" />
<group targetFramework=".NETStandard2.1" />
</dependencies>
<!-- ... -->
</metadata>
<!-- Optional 'files' node -->
<files>
<file src=".\Nuget\images\icon.png" target="images\" />
<file src=".\LICENSE.txt" target="" />
<file src=".\README.md" target="docs\" />
<!-- Any CPU -->
<file src="API\Framework4.8\bin\Release\*.*" target="lib\net48" exclude="*.tmp;*.pdb"/>
<file src="API\Net5.0\bin\Release\net5.0\*.*" target="lib\net5.0" exclude="*.tmp;*.pdb"/>
<file src="API\Net6.0\bin\Release\net6.0\*.*" target="lib\net6.0" exclude="*.tmp;*.pdb"/>
<file src="API\NetCore3.1\bin\Release\netcoreapp3.1\*.*" target="lib\netcoreapp3.1" exclude="*.tmp;*.pdb"/>
<file src="API\Standard2.0\bin\Release\netstandard2.0\*.*" target="lib\netstandard2.0" exclude="*.tmp;*.pdb"/>
<file src="API\Standard2.1\bin\Release\netstandard2.1\*.*" target="lib\netstandard2.1" exclude="*.tmp;*.pdb"/>
</files>
</package>