mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.2 KiB
71 lines
2.2 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<Project> |
|
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.props" /> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net472</TargetFramework> |
|
<AssemblyName>ILSpy.ReadyToRun.Plugin</AssemblyName> |
|
<LangVersion>7.2</LangVersion> |
|
|
|
<GenerateAssemblyInfo>False</GenerateAssemblyInfo> |
|
|
|
<EnableDefaultItems>false</EnableDefaultItems> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Debug'"> |
|
<DebugType>full</DebugType> |
|
<DebugSymbols>true</DebugSymbols> |
|
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'"> |
|
<DebugType>pdbonly</DebugType> |
|
<DebugSymbols>true</DebugSymbols> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup> |
|
<OutputPath>..\ILSpy\bin\$(Configuration)\</OutputPath> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj"> |
|
<Private>False</Private> |
|
</ProjectReference> |
|
<ProjectReference Include="..\ILSpy\ILSpy.csproj"> |
|
<Private>False</Private> |
|
</ProjectReference> |
|
<ProjectReference Include="..\SharpTreeView\ICSharpCode.TreeView.csproj"> |
|
<Private>False</Private> |
|
</ProjectReference> |
|
<Reference Include="PresentationCore" /> |
|
<Reference Include="PresentationFramework" /> |
|
<Reference Include="System.Xaml" /> |
|
<Reference Include="WindowsBase" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Compile Include="ReadyToRunLanguage.cs" /> |
|
<Compile Include="ReadyToRunOptionPage.xaml.cs"> |
|
<DependentUpon>ReadyToRunOptionPage.xaml</DependentUpon> |
|
</Compile> |
|
<Compile Include="ReadyToRunOptions.cs" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Page Include="ReadyToRunOptionPage.xaml" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Iced" Version="1.4.0" /> |
|
<PackageReference Include="ILCompiler.Reflection.ReadyToRun" Version="1.0.6-alpha" /> |
|
</ItemGroup> |
|
|
|
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" /> |
|
|
|
<Target Name="RemoveTransitiveProjectReferences" AfterTargets="IncludeTransitiveProjectReferences"> |
|
<ItemGroup> |
|
<ProjectReference Remove="@(_TransitiveProjectReferences)" /> |
|
</ItemGroup> |
|
</Target> |
|
|
|
</Project> |