-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodingWithCalvin.CouchbaseExplorer.csproj
More file actions
37 lines (31 loc) · 1.17 KB
/
CodingWithCalvin.CouchbaseExplorer.csproj
File metadata and controls
37 lines (31 loc) · 1.17 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
30
31
32
33
34
35
36
37
<Project Sdk="CodingWithCalvin.VsixSdk/0.3.0">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<RootNamespace>CodingWithCalvin.CouchbaseExplorer</RootNamespace>
<AssemblyName>CodingWithCalvin.CouchbaseExplorer</AssemblyName>
<LangVersion>latest</LangVersion>
<OutputPath>bin/$(Configuration)/</OutputPath>
<UseWPF>true</UseWPF>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<DeployExtension>True</DeployExtension>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CouchbaseNetClient" Version="3.8.1" />
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.14.40265" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\watermark.png" />
</ItemGroup>
<ItemGroup>
<Content Include="..\..\resources\icon.png" Link="resources\icon.png">
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<Content Include="..\..\resources\logo.png" Link="resources\logo.png">
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<Content Include="..\..\LICENSE" Link="resources\LICENSE">
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
</ItemGroup>
</Project>