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.

27 lines
1.0 KiB

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.0</TargetFramework>
  4. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  5. <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
  6. <RootNamespace>ICSharpCode.Decompiler.PowerShell</RootNamespace>
  7. </PropertyGroup>
  8. <Import Project="..\packages.props" />
  9. <ItemGroup>
  10. <PackageReference Include="PowerShellStandard.Library" Version="5.1.0" />
  11. <PackageReference Include="Mono.Cecil" Version="$(MonoCecilVersion)" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ProjectReference Include="..\ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <Compile Include="..\ICSharpCode.Decompiler.PdbProvider.Cecil\MonoCecilDebugInfoProvider.cs" Link="MonoCecilDebugInfoProvider.cs" />
  18. <Compile Include="..\ILSpy\DebugInfo\PortableDebugInfoProvider.cs" Link="PortableDebugInfoProvider.cs" />
  19. <Compile Include="..\ILSpy\DebugInfo\DebugInfoUtils.cs" Link="DebugInfoUtils.cs" />
  20. </ItemGroup>
  21. </Project>