Skip to content

Commit

Permalink
Project configuration updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
VitaliiTsilnyk committed Jan 15, 2016
1 parent 8a9b602 commit 9f1886c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
5 changes: 2 additions & 3 deletions src/NGettext/NGettext.xproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,16 @@
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>

<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.Props" Condition="'$(VSToolsPath)' != ''" />
<PropertyGroup Label="Globals">
<ProjectGuid>a6e2d0f9-52f7-421a-a8c2-e43b3394c0b7</ProjectGuid>
<RootNamespace>NGettext</RootNamespace>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">..\..\artifacts\bin\$(MSBuildProjectName)\</OutputPath>
</PropertyGroup>

<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'" />
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" />
</Project>
</Project>
18 changes: 16 additions & 2 deletions src/NGettext/project.json
Original file line number Diff line number Diff line change
@@ -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" ],
Expand All @@ -19,6 +19,20 @@
"keyFile": "../../NGettext.snk"
},

"configurations": {
"Debug": {
"compilationOptions": {
"define": [ "DEBUG", "TRACE" ]
}
},
"Release": {
"compilationOptions": {
"define": [ "RELEASE" ],
"optimize": true
}
}
},

"packInclude": {
"LICENSE": "../../LICENSE"
},
Expand Down

0 comments on commit 9f1886c

Please sign in to comment.