diff --git a/src/NGettext/NGettext.xproj b/src/NGettext/NGettext.xproj index 31c10eb..c5abc4e 100644 --- a/src/NGettext/NGettext.xproj +++ b/src/NGettext/NGettext.xproj @@ -4,7 +4,6 @@ 14.0 $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - a6e2d0f9-52f7-421a-a8c2-e43b3394c0b7 @@ -12,9 +11,9 @@ ..\..\artifacts\obj\$(MSBuildProjectName) ..\..\artifacts\bin\$(MSBuildProjectName)\ - 2.0 + - + \ No newline at end of file diff --git a/src/NGettext/project.json b/src/NGettext/project.json index a0e05e4..bb15ac8 100644 --- a/src/NGettext/project.json +++ b/src/NGettext/project.json @@ -1,7 +1,7 @@ { - "version": "0.3.0.0", + "version": "0.3.0.1", "title": "NGettext", - "description": "A .NET implementation of the GNU/Gettext library.", + "description": "A cross-platform .NET implementation of the GNU/Gettext library.", "owners": [ "Neris Ereptoris" ], "authors": [ "Neris Ereptoris" ], "tags": [ "ngettext", "gettext", "internationalization", "localization", "i18n", "l10n", "translate" ], @@ -19,6 +19,20 @@ "keyFile": "../../NGettext.snk" }, + "configurations": { + "Debug": { + "compilationOptions": { + "define": [ "DEBUG", "TRACE" ] + } + }, + "Release": { + "compilationOptions": { + "define": [ "RELEASE" ], + "optimize": true + } + } + }, + "packInclude": { "LICENSE": "../../LICENSE" },