-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
122 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?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.1.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 --> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<license type="file">LICENSE.txt</license> | ||
<projectUrl>https://github.com/DaanV2/Config-Handling.Net</projectUrl> | ||
<copyright>Daan Verstraten 2018</copyright> | ||
<tags>config config-management</tags> | ||
<repository type="git" url="https://github.com/DaanV2/Config-Handling.Net" /> | ||
<releaseNotes>Fixing config.ini</releaseNotes> | ||
<icon>images\icon.png</icon> | ||
<dependencies> | ||
<group targetFramework=".NETCoreApp3.1" /> | ||
<group targetFramework=".NETCore5.0" /> | ||
<group targetFramework=".NET6.0" /> | ||
<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="" /> | ||
|
||
<!-- 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\netcore50" exclude="*.tmp;*.pdb"/> | ||
<file src="API\Net6.0\bin\Release\net6.0\*.*" target="lib\netcore60" exclude="*.tmp;*.pdb"/> | ||
<file src="API\NetCore3.0\bin\Release\netcoreapp3.0\*.*" target="lib\netcoreapp3.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> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<RootNamespace>Test.Net_6._0</RootNamespace> | ||
|
||
<IsPackable>false</IsPackable> | ||
|
||
<Platforms>AnyCPU;x86;x64</Platforms> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" /> | ||
<PackageReference Include="MSTest.TestAdapter" Version="2.1.1" /> | ||
<PackageReference Include="MSTest.TestFramework" Version="2.1.1" /> | ||
<PackageReference Include="coverlet.collector" Version="1.3.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\API\Net6.0\Net6.0.csproj" /> | ||
</ItemGroup> | ||
|
||
<Import Project="..\Test - Source\Test - Source.projitems" Label="Shared" /> | ||
|
||
</Project> |