forked from jiailiuyan/ironpython3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIronPython.csproj
More file actions
60 lines (60 loc) · 2.71 KB
/
Copy pathIronPython.csproj
File metadata and controls
60 lines (60 loc) · 2.71 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
56
57
58
59
60
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$(ProjectDir)..\..\Build\Common.proj" />
<PropertyGroup>
<TargetFrameworks>net45;netcoreapp2.0</TargetFrameworks>
<PlatformTarget>anycpu</PlatformTarget>
<ProjectGuid>{95289EA9-5778-489D-AB48-F81F2CE2DA32}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>IronPython</RootNamespace>
<AssemblyName>IronPython</AssemblyName>
<BaseAddress>879755264</BaseAddress>
<CodeAnalysisRuleSet>$(AssemblyName).ruleset</CodeAnalysisRuleSet>
<DocumentationFile>$(OutputPath)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\DLR\Src\Microsoft.Dynamic\Microsoft.Dynamic.csproj" />
</ItemGroup>
<ItemGroup>
<PolicyFile Include="policy.$(AssemblyName).config" />
</ItemGroup>
<ItemGroup Condition=" '$(IsFullFramework)' == 'true' ">
<Reference Include="System.Xml" />
<Reference Include="System.Configuration" />
<Reference Include="System.Runtime.Remoting" />
<Reference Condition="'$(Mono)' == 'true'" Include="Mono.Posix">
<SpecificVersion>False</SpecificVersion>
</Reference>
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.0' AND '$(OS)' != 'Windows_NT' ">
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0-beta2" />
</ItemGroup>
<ItemGroup>
<None Update="Lib\**\*.py">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="..\StdLib\Lib\os.py" Link="Lib\os.py">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Compile Include="..\AssemblyVersion.cs" Link="Properties\AssemblyVersion.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Modules\unicodedata\IPyUnicodeData.txt.gz" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.0'">
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.4.0" />
</ItemGroup>
<Import Project="$(BeforeTargetFiles)" />
<Target Name="BeforeBuildStarts" BeforeTargets="BeforeBuild" DependsOnTargets="$(BeforeTargets);GenerateCurrentVersion" />
<ItemGroup>
<!-- if the file does not exist it's not picked up automatically -->
<Compile Remove="Properties\CurrentVersion.Generated.cs" />
<Compile Include="Properties\CurrentVersion.Generated.cs" />
<Compile Remove="Properties\BuildInfo.Generated.cs" />
<Compile Include="Properties\BuildInfo.Generated.cs" />
</ItemGroup>
<Import Project="$(AfterTargetFiles)" />
<Target Name="AfterBuildEnds" AfterTargets="AfterBuild" DependsOnTargets="$(AfterTargets)" />
</Project>