Skip to content

Commit 03bde77

Browse files
author
Kevin Brown
committed
Downgraded solution to support MonoDevelop
1 parent b3a53f9 commit 03bde77

File tree

3 files changed

+26
-13
lines changed

3 files changed

+26
-13
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,3 +106,13 @@ Generated_Code #added for RIA/Silverlight projects
106106
_UpgradeReport_Files/
107107
Backup*/
108108
UpgradeLog*.XML
109+
110+
### MonoDevelop ###
111+
#User Specific
112+
*.userprefs
113+
*.usertasks
114+
115+
#Mono Project Files
116+
*.pidb
117+
*.resources
118+
test-results/

cac.sln

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11

2-
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Express 2013 for Windows Desktop
4-
VisualStudioVersion = 12.0.20827.3
5-
MinimumVisualStudioVersion = 10.0.40219.1
2+
Microsoft Visual Studio Solution File, Format Version 11.00
3+
4+
# Visual Studio 2010
5+
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "cac", "cac\cac.csproj", "{21A0AE4A-8B9E-4B17-8A93-C550E49F0960}"
77
EndProject
8+
89
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NetIRC", "..\NetIRC\NetIRC\NetIRC.csproj", "{4AEE2D87-D356-4CA1-BA02-7536B1AF2B8C}"
910
EndProject
11+
1012
Global
1113
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1214
Debug|Any CPU = Debug|Any CPU
@@ -22,6 +24,9 @@ Global
2224
{4AEE2D87-D356-4CA1-BA02-7536B1AF2B8C}.Release|Any CPU.ActiveCfg = Release|Any CPU
2325
{4AEE2D87-D356-4CA1-BA02-7536B1AF2B8C}.Release|Any CPU.Build.0 = Release|Any CPU
2426
EndGlobalSection
27+
GlobalSection(MonoDevelopProperties) = preSolution
28+
StartupItem = cac\cac.csproj
29+
EndGlobalSection
2530
GlobalSection(SolutionProperties) = preSolution
2631
HideSolutionNode = FALSE
2732
EndGlobalSection

cac/cac.csproj

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -11,6 +11,8 @@
1111
<AssemblyName>cac</AssemblyName>
1212
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
14+
<ProductVersion>10.0.0</ProductVersion>
15+
<SchemaVersion>2.0</SchemaVersion>
1416
</PropertyGroup>
1517
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1618
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -31,10 +33,6 @@
3133
<ErrorReport>prompt</ErrorReport>
3234
<WarningLevel>4</WarningLevel>
3335
</PropertyGroup>
34-
<PropertyGroup>
35-
<StartupObject>
36-
</StartupObject>
37-
</PropertyGroup>
3836
<ItemGroup>
3937
<Reference Include="System" />
4038
<Reference Include="System.Core" />
@@ -49,20 +47,20 @@
4947
<Compile Include="Card.cs" />
5048
<Compile Include="Constants.cs" />
5149
<Compile Include="Game.cs" />
50+
<Compile Include="GameSettings.cs" />
5251
<Compile Include="GameState.cs" />
5352
<Compile Include="Helper.cs" />
5453
<Compile Include="Player.cs" />
5554
<Compile Include="Program.cs" />
5655
<Compile Include="Properties\AssemblyInfo.cs" />
57-
<Compile Include="Settings.cs" />
5856
<Compile Include="WhiteCard.cs" />
5957
</ItemGroup>
6058
<ItemGroup>
6159
<None Include="App.config" />
6260
</ItemGroup>
6361
<ItemGroup>
6462
<ProjectReference Include="..\..\NetIRC\NetIRC\NetIRC.csproj">
65-
<Project>{4aee2d87-d356-4ca1-ba02-7536b1af2b8c}</Project>
63+
<Project>{4AEE2D87-D356-4CA1-BA02-7536B1AF2B8C}</Project>
6664
<Name>NetIRC</Name>
6765
</ProjectReference>
6866
</ItemGroup>
@@ -74,4 +72,4 @@
7472
<Target Name="AfterBuild">
7573
</Target>
7674
-->
77-
</Project>
75+
</Project>

0 commit comments

Comments
 (0)