-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZpTest.csproj
34 lines (28 loc) · 1.13 KB
/
ZpTest.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
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Author>Zymlex</Author>
<Product>ZPTest</Product>
<TargetFramework>net48</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<LangVersion>5</LangVersion>
<RootNamespace>ZpTest</RootNamespace>
<Authors>Zymlex</Authors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugType>full</DebugType>
<OutputPath>$(ZennoPosterCurrentPath)\ExternalAssemblies</OutputPath>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>$(ZennoPosterCurrentPath)\ExternalAssemblies</OutputPath>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2020.1.0">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ZPHelper\ZPHelper.csproj" />
</ItemGroup>
</Project>