Skip to content

Commit 7c37b78

Browse files
author
kiddailey
committed
- Final restructuring
- Added UnitTests project
1 parent e49c2ae commit 7c37b78

File tree

6 files changed

+99
-9
lines changed

6 files changed

+99
-9
lines changed

ASPNetImage.sln

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11

22
Microsoft Visual Studio Solution File, Format Version 9.00
33
# Visual Studio 2005
4-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ASPNetImage", "ASPNetImage.csproj", "{B56B76E7-0BF9-4439-8AEB-91C6709628C5}"
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ASPNetImage", "ASPNetImage\ASPNetImage.csproj", "{B56B76E7-0BF9-4439-8AEB-91C6709628C5}"
55
ProjectSection(WebsiteProperties) = preProject
66
Debug.AspNetCompiler.Debug = "True"
77
Release.AspNetCompiler.Debug = "False"
88
EndProjectSection
99
EndProject
10-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTests", "..\ConsoleApplication1\UnitTests.csproj", "{E16062BA-6FF9-4C83-BA86-38513658682E}"
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTests", "UnitTests\UnitTests.csproj", "{EFB48FB4-4982-49E4-A007-98BFCE885C70}"
1111
ProjectSection(WebsiteProperties) = preProject
1212
Debug.AspNetCompiler.Debug = "True"
1313
Release.AspNetCompiler.Debug = "False"
@@ -23,10 +23,10 @@ Global
2323
{B56B76E7-0BF9-4439-8AEB-91C6709628C5}.Debug|Any CPU.Build.0 = Debug|Any CPU
2424
{B56B76E7-0BF9-4439-8AEB-91C6709628C5}.Release|Any CPU.ActiveCfg = Release|Any CPU
2525
{B56B76E7-0BF9-4439-8AEB-91C6709628C5}.Release|Any CPU.Build.0 = Release|Any CPU
26-
{E16062BA-6FF9-4C83-BA86-38513658682E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27-
{E16062BA-6FF9-4C83-BA86-38513658682E}.Debug|Any CPU.Build.0 = Debug|Any CPU
28-
{E16062BA-6FF9-4C83-BA86-38513658682E}.Release|Any CPU.ActiveCfg = Release|Any CPU
29-
{E16062BA-6FF9-4C83-BA86-38513658682E}.Release|Any CPU.Build.0 = Release|Any CPU
26+
{EFB48FB4-4982-49E4-A007-98BFCE885C70}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27+
{EFB48FB4-4982-49E4-A007-98BFCE885C70}.Debug|Any CPU.Build.0 = Debug|Any CPU
28+
{EFB48FB4-4982-49E4-A007-98BFCE885C70}.Release|Any CPU.ActiveCfg = Release|Any CPU
29+
{EFB48FB4-4982-49E4-A007-98BFCE885C70}.Release|Any CPU.Build.0 = Release|Any CPU
3030
EndGlobalSection
3131
GlobalSection(SolutionProperties) = preSolution
3232
HideSolutionNode = FALSE

ASPNetImage.suo

1 KB
Binary file not shown.

ASPNetImage/ASPNetImage.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,6 @@
5050
<Content Include="Resource\ASPNetImage.txt" />
5151
<Content Include="Resource\gpl-3.0.txt" />
5252
</ItemGroup>
53-
<ItemGroup>
54-
<Folder Include="UnitTests\" />
55-
</ItemGroup>
5653
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
5754
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
5855
Other similar extension points exist, see Microsoft.Common.targets.

UnitTests/Program.cs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Text;
4+
5+
namespace UnitTests
6+
{
7+
class Program
8+
{
9+
static void Main(string[] args)
10+
{
11+
}
12+
}
13+
}
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("UnitTests")]
9+
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("Scribblefish Media LLC")]
12+
[assembly: AssemblyProduct("UnitTests")]
13+
[assembly: AssemblyCopyright("Copyright © Scribblefish Media LLC 2010")]
14+
[assembly: AssemblyTrademark("")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// Setting ComVisible to false makes the types in this assembly not visible
18+
// to COM components. If you need to access a type in this assembly from
19+
// COM, set the ComVisible attribute to true on that type.
20+
[assembly: ComVisible(false)]
21+
22+
// The following GUID is for the ID of the typelib if this project is exposed to COM
23+
[assembly: Guid("773925b1-ecd0-4176-8266-3b17bbd5d5f8")]
24+
25+
// Version information for an assembly consists of the following four values:
26+
//
27+
// Major Version
28+
// Minor Version
29+
// Build Number
30+
// Revision
31+
//
32+
[assembly: AssemblyVersion("1.0.0.0")]
33+
[assembly: AssemblyFileVersion("1.0.0.0")]

UnitTests/UnitTests.csproj

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<PropertyGroup>
3+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5+
<ProductVersion>8.0.50727</ProductVersion>
6+
<SchemaVersion>2.0</SchemaVersion>
7+
<ProjectGuid>{EFB48FB4-4982-49E4-A007-98BFCE885C70}</ProjectGuid>
8+
<OutputType>Exe</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>UnitTests</RootNamespace>
11+
<AssemblyName>UnitTests</AssemblyName>
12+
</PropertyGroup>
13+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
14+
<DebugSymbols>true</DebugSymbols>
15+
<DebugType>full</DebugType>
16+
<Optimize>false</Optimize>
17+
<OutputPath>bin\Debug\</OutputPath>
18+
<DefineConstants>DEBUG;TRACE</DefineConstants>
19+
<ErrorReport>prompt</ErrorReport>
20+
<WarningLevel>4</WarningLevel>
21+
</PropertyGroup>
22+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
23+
<DebugType>pdbonly</DebugType>
24+
<Optimize>true</Optimize>
25+
<OutputPath>bin\Release\</OutputPath>
26+
<DefineConstants>TRACE</DefineConstants>
27+
<ErrorReport>prompt</ErrorReport>
28+
<WarningLevel>4</WarningLevel>
29+
</PropertyGroup>
30+
<ItemGroup>
31+
<Reference Include="System" />
32+
<Reference Include="System.Data" />
33+
<Reference Include="System.Xml" />
34+
</ItemGroup>
35+
<ItemGroup>
36+
<Compile Include="Program.cs" />
37+
<Compile Include="Properties\AssemblyInfo.cs" />
38+
</ItemGroup>
39+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
40+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
41+
Other similar extension points exist, see Microsoft.Common.targets.
42+
<Target Name="BeforeBuild">
43+
</Target>
44+
<Target Name="AfterBuild">
45+
</Target>
46+
-->
47+
</Project>

0 commit comments

Comments
 (0)