forked from IronLanguages/ironpython3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIronPythonCompiler.csproj
More file actions
31 lines (25 loc) · 1 KB
/
IronPythonCompiler.csproj
File metadata and controls
31 lines (25 loc) · 1 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net46</TargetFrameworks>
<OutputType>Exe</OutputType>
<RootNamespace>IronPythonCompiler</RootNamespace>
<AssemblyName>ipyc</AssemblyName>
<StartupObject>IronPythonCompiler.Program</StartupObject>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\IronPython\IronPython.csproj" />
</ItemGroup>
<ItemGroup>
<StageItem Include="$(TargetDir)\IKVM.Reflection.dll" />
<StageItem Include="$(RootDir)Util\References\IKVM\IKVM.Reflection.License.txt" />
</ItemGroup>
<ItemGroup>
<Reference Include="IKVM.Reflection" CopyLocal="true">
<HintPath>..\..\Util\References\IKVM\IKVM.Reflection.dll</HintPath>
</Reference>
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<Import Project="$(AfterTargetFiles)" />
<Target Name="AfterBuildEnds" AfterTargets="AfterBuild" DependsOnTargets="$(AfterTargets)" />
</Project>