forked from Inumedia/SlackAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSlackAPI.csproj
More file actions
26 lines (20 loc) · 902 Bytes
/
Copy pathSlackAPI.csproj
File metadata and controls
26 lines (20 loc) · 902 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Configuration">
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<DebugType>Full</DebugType>
<RootNamespace>SlackAPI</RootNamespace>
<AssemblyName>SlackAPI</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<OutputPath>C:\Users\yodad\Source\Repos\BallotBot\BallotBot\SlackAPI\</OutputPath>
</PropertyGroup>
</Project>