-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathll1.csproj
28 lines (22 loc) · 856 Bytes
/
ll1.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>Pck</RootNamespace>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
<AssemblyName>pck.ll1</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\bin\Debug</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\bin\Release</OutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\common\CollectionUtility.cs" Link="CollectionUtility.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\cfg\cfg.csproj" />
<ProjectReference Include="..\pck\pck.csproj" />
</ItemGroup>
</Project>