forked from litmus/previews-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLitmus.PreviewsApi.csproj
54 lines (54 loc) · 2.13 KB
/
Litmus.PreviewsApi.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{74338E7E-022A-4307-B36C-B0D664AABEFA}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>Litmus.PreviewsApi</RootNamespace>
<AssemblyName>Litmus.PreviewsApi</AssemblyName>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<Company>Litmus Software</Company>
<Description>Litmus Previews Api Library</Description>
<Copyright>Copyright © Litmus Software 2021</Copyright>
<AssemblyVersion>1.0.0.2</AssemblyVersion>
<FileVersion>1.0.0.2</FileVersion>
<PackageProjectUrl>https://github.com/litmus/previews-api-client</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/litmus/previews-api-client</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Litmus.PreviewsApi.Tests\**" />
<EmbeddedResource Remove="Litmus.PreviewsApi.Tests\**" />
<None Remove="Litmus.PreviewsApi.Tests\**" />
</ItemGroup>
<ItemGroup>
<None Remove="*.nupkg" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="RestSharp" Version="106.15.0" />
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>