-
Notifications
You must be signed in to change notification settings - Fork 0
/
StubGen.csproj
78 lines (78 loc) · 3.15 KB
/
StubGen.csproj
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{7FB90E1D-A889-4919-A947-69F59DEB8E67}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>StubGen</RootNamespace>
<AssemblyName>StubGen</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<StartupObject>StubGen.MainClass</StartupObject>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>none</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<ItemGroup>
<Reference Include="System">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="System.Xml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="System.Core">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Main.cs" />
<Compile Include="AssemblyInfo.cs" />
<Compile Include="Options.cs" />
<Compile Include="Generator.cs" />
<Compile Include="StubGenOptions.cs" />
<Compile Include="Macro.cs" />
<Compile Include="Outline.cs" />
<Compile Include="Utils.cs" />
<Compile Include="MiscExtensions.cs" />
<Compile Include="FormattingExtensions.cs" />
<Compile Include="CecilExtensions.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<ProjectReference Include="lib\Mono.Cecil\Mono.Cecil.csproj">
<Project>{D68133BD-1E63-496E-9EDE-4FBDBF77B486}</Project>
<Name>Mono.Cecil</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="resources\" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="resources\Apache2LicencePolicy.xml" />
<EmbeddedResource Include="resources\GPL2LicencePolicy.xml" />
<EmbeddedResource Include="resources\GPL3LicencePolicy.xml" />
<EmbeddedResource Include="resources\LGPL2-1LicencePolicy.xml" />
<EmbeddedResource Include="resources\LGPL3LicencePolicy.xml" />
<EmbeddedResource Include="resources\MITX11LicencePolicy.xml" />
<EmbeddedResource Include="resources\NewBSDLicencePolicy.xml" />
</ItemGroup>
</Project>