forked from IronLanguages/ironpython3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIronPythonConsole.csproj
More file actions
55 lines (55 loc) · 2.26 KB
/
IronPythonConsole.csproj
File metadata and controls
55 lines (55 loc) · 2.26 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
55
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<Import Project="$(ProjectDir)..\..\Build\Common.proj" />
<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{811AC32C-11F3-4ED8-92A7-A7E39C2BB704}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>IronPythonConsole</RootNamespace>
<AssemblyName>ipy</AssemblyName>
<ApplicationIcon>ipy.ico</ApplicationIcon>
<PlatformTarget>x86</PlatformTarget>
<CodeAnalysisRuleSet>IronPythonConsole.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'FxCop|AnyCPU' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'v2Debug|AnyCPU' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'v2Release|AnyCPU' ">
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\IronPython\IronPython.csproj">
<Project>{95289EA9-5778-489D-AB48-F81F2CE2DA32}</Project>
<Name>IronPython</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Console.cs" />
<Compile Include="..\AssemblyVersion.cs">
<Link>Properties\AssemblyVersion.cs</Link>
</Compile>
<Compile Include="Properties\BuildInfo.Generated.cs" />
<Content Include="ipy.ico" />
</ItemGroup>
<ItemGroup>
<None Include="..\App.Debug.config">
<Link>App.Debug.config</Link>
</None>
<None Include="..\App.Release.config">
<Link>App.Release.config</Link>
</None>
<None Include="IronPythonConsole.ruleset" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(BeforeTargetFiles)" />
<Target Name="BeforeBuild" DependsOnTargets="$(BeforeTargets)" />
<Import Project="$(AfterTargetFiles)" />
<Target Name="AfterBuild" DependsOnTargets="$(AfterTargets)" />
</Project>