-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathProgram.csproj
More file actions
54 lines (54 loc) · 1.93 KB
/
Program.csproj
File metadata and controls
54 lines (54 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Rebuild" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AssemblyName>SharpCover</AssemblyName>
<WarningLevel>4</WarningLevel>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="Counter.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="Newtonsoft.Json">
<HintPath>../libs/Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Mono.Cecil">
<HintPath>../libs/Mono.Cecil.dll</HintPath>
</Reference>
<Reference Include="Mono.Cecil.Rocks">
<HintPath>../libs/Mono.Cecil.Rocks.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Include="../libs/Mono.Cecil.Pdb.dll">
<Link>Mono.Cecil.Pdb.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="../libs/Mono.Cecil.Mdb.dll">
<Link>Mono.Cecil.Mdb.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="HitCounter.cs" />
<Compile Include="HtmlConverter.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)/Microsoft.CSharp.targets" />
<ItemGroup>
<Folder Include="Resources\" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\normalize.css">
<LogicalName>SharpCoverHtmlConverter.Resources.normalize.css</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="Resources\toggleScript.js">
<LogicalName>SharpCoverHtmlConverter.Resources.toggleScript.js</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="Resources\jquery.js">
<LogicalName>SharpCoverHtmlConverter.Resources.jquery.js</LogicalName>
</EmbeddedResource>
</ItemGroup>
</Project>