Skip to content

Commit af9a53a

Browse files
committed
ngi: added AnyCPU project platform.
1 parent 4928cfb commit af9a53a

2 files changed

Lines changed: 41 additions & 1 deletion

File tree

Naggum.sln

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ngi", "ngi\ngi.csproj", "{3
1717
ProjectSection(ProjectDependencies) = postProject
1818
{402B5E79-E063-4833-AE4B-2986AEEC1D75} = {402B5E79-E063-4833-AE4B-2986AEEC1D75}
1919
EndProjectSection
20+
EndProject
2021
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Naggum.Test", "Naggum.Test\Naggum.Test.fsproj", "{38230CBD-DE3E-4470-925F-DE966E8691AA}"
2122
EndProject
2223
Global
@@ -49,7 +50,8 @@ Global
4950
{402B5E79-E063-4833-AE4B-2986AEEC1D75}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
5051
{402B5E79-E063-4833-AE4B-2986AEEC1D75}.Release|Mixed Platforms.Build.0 = Release|Any CPU
5152
{402B5E79-E063-4833-AE4B-2986AEEC1D75}.Release|x86.ActiveCfg = Release|Any CPU
52-
{34E781DF-EAD9-4034-ADE4-8DA41A16644A}.Debug|Any CPU.ActiveCfg = Debug|x86
53+
{34E781DF-EAD9-4034-ADE4-8DA41A16644A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
54+
{34E781DF-EAD9-4034-ADE4-8DA41A16644A}.Debug|Any CPU.Build.0 = Debug|Any CPU
5355
{34E781DF-EAD9-4034-ADE4-8DA41A16644A}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
5456
{34E781DF-EAD9-4034-ADE4-8DA41A16644A}.Debug|Mixed Platforms.Build.0 = Debug|x86
5557
{34E781DF-EAD9-4034-ADE4-8DA41A16644A}.Debug|x86.ActiveCfg = Debug|x86
@@ -61,8 +63,12 @@ Global
6163
{34E781DF-EAD9-4034-ADE4-8DA41A16644A}.Release|x86.Build.0 = Release|x86
6264
{38230CBD-DE3E-4470-925F-DE966E8691AA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
6365
{38230CBD-DE3E-4470-925F-DE966E8691AA}.Debug|Any CPU.Build.0 = Debug|Any CPU
66+
{38230CBD-DE3E-4470-925F-DE966E8691AA}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
67+
{38230CBD-DE3E-4470-925F-DE966E8691AA}.Debug|x86.ActiveCfg = Debug|Any CPU
6468
{38230CBD-DE3E-4470-925F-DE966E8691AA}.Release|Any CPU.ActiveCfg = Release|Any CPU
6569
{38230CBD-DE3E-4470-925F-DE966E8691AA}.Release|Any CPU.Build.0 = Release|Any CPU
70+
{38230CBD-DE3E-4470-925F-DE966E8691AA}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
71+
{38230CBD-DE3E-4470-925F-DE966E8691AA}.Release|x86.ActiveCfg = Release|Any CPU
6672
EndGlobalSection
6773
GlobalSection(SolutionProperties) = preSolution
6874
HideSolutionNode = FALSE

ngi/ngi.csproj

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,40 @@
3333
<ErrorReport>prompt</ErrorReport>
3434
<WarningLevel>4</WarningLevel>
3535
</PropertyGroup>
36+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
37+
<DebugSymbols>true</DebugSymbols>
38+
<OutputPath>bin\Debug\</OutputPath>
39+
<DefineConstants>DEBUG;TRACE</DefineConstants>
40+
<DebugType>full</DebugType>
41+
<PlatformTarget>AnyCPU</PlatformTarget>
42+
<CodeAnalysisLogFile>..\bin\ngi.exe.CodeAnalysisLog.xml</CodeAnalysisLogFile>
43+
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
44+
<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
45+
<ErrorReport>prompt</ErrorReport>
46+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
47+
<CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
48+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
49+
<CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
50+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
51+
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
52+
</PropertyGroup>
53+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
54+
<OutputPath>bin\Release\</OutputPath>
55+
<DefineConstants>TRACE</DefineConstants>
56+
<Optimize>true</Optimize>
57+
<DebugType>pdbonly</DebugType>
58+
<PlatformTarget>AnyCPU</PlatformTarget>
59+
<CodeAnalysisLogFile>..\bin\ngi.exe.CodeAnalysisLog.xml</CodeAnalysisLogFile>
60+
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
61+
<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
62+
<ErrorReport>prompt</ErrorReport>
63+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
64+
<CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
65+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
66+
<CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
67+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
68+
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
69+
</PropertyGroup>
3670
<ItemGroup>
3771
<Reference Include="System" />
3872
<Reference Include="System.Core" />

0 commit comments

Comments
 (0)