-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodingWithCalvin.SuperClean.csproj
More file actions
32 lines (27 loc) · 1.07 KB
/
CodingWithCalvin.SuperClean.csproj
File metadata and controls
32 lines (27 loc) · 1.07 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
<Project Sdk="CodingWithCalvin.VsixSdk/0.3.0">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<RootNamespace>CodingWithCalvin.SuperClean</RootNamespace>
<AssemblyName>CodingWithCalvin.SuperClean</AssemblyName>
<LangVersion>latest</LangVersion>
<OutputPath>bin/$(Configuration)/</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<DeployExtension>True</DeployExtension>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Community.VisualStudio.Toolkit.17" Version="17.0.492" />
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.14.40265" />
</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>