-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConnect.AssemblyAnalyzer.csproj
More file actions
29 lines (24 loc) · 1.04 KB
/
Connect.AssemblyAnalyzer.csproj
File metadata and controls
29 lines (24 loc) · 1.04 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<RootNamespace>Connect.AssemblyAnalyzer</RootNamespace>
<ApplicationIcon />
<OutputType>Library</OutputType>
<StartupObject></StartupObject>
<BaseOutputPath>D:\Tools\Powershell\assemblyanalyze</BaseOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>D:\Tools\Powershell\assemblyanalyze\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<DependsOnNETStandard>true</DependsOnNETStandard>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Program.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ICSharpCode.Decompiler" Version="3.0.0.3447" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="PowerShellStandard.Library" Version="3.0.0-preview-01" />
</ItemGroup>
</Project>