dotnet-core_mail-server/MailServer/DNS/project.json

53 lines
1.3 KiB
JSON

{
"version": "1.0.0-*",
"authors": [ "MichaCo" ],
"packOptions": {
"licenseUrl": "https://github.com/MichaCo/DnsClient.NET/blob/master/LICENSE",
"projectUrl": "https://github.com/MichaCo/DnsClient.NET",
"repository": {
"type": "git",
"url": "https://github.com/MichaCo/DnsClient.NET"
},
"summary": "A simple DNS client written in C#.",
"tags": [ "DNS", "Name Server", "CSharp", ".NET", ".NET Core" ]
},
"buildOptions": {
"allowUnsafe": false,
"languageVersion": "csharp6",
"warningsAsErrors": false,
"xmlDoc": true,
"keyFile": "../../Tools/key.snk"
},
"copyright": "Copyright (c) 2016 MichaConrad",
"configurations": {
"Debug": {
"buildOptions": {
"define": [ "DEBUG" ]
}
},
"Release": {
"buildOptions": {
"define": [ "RELEASE" ],
"optimize": true
}
}
},
"dependencies": {
},
"frameworks": {
"netstandard1.3": {
"dependencies": {
"NETStandard.Library": "1.6.0",
"System.Net.NameResolution": "4.0.0",
"System.Net.NetworkInformation": "4.3.0",
"System.Runtime": "4.3.0"
},
"buildOptions": { "define": [ "XPLAT" ] }
},
"net45": {
"frameworkAssemblies": {
}
}
}
}