45 lines
1.6 KiB
XML
45 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<!-- VSIX Properties -->
|
|
<GeneratePkgDefFile>true</GeneratePkgDefFile>
|
|
<IncludeAssemblyInVSIXContainer>true</IncludeAssemblyInVSIXContainer>
|
|
<IncludeDebugSymbolsInVSIXContainer>false</IncludeDebugSymbolsInVSIXContainer>
|
|
<IncludeDebugSymbolsInLocalVSIXDeployment>false</IncludeDebugSymbolsInLocalVSIXDeployment>
|
|
<CopyBuildOutputToOutputDirectory>true</CopyBuildOutputToOutputDirectory>
|
|
<CopyOutputSymbolsToOutputDirectory>false</CopyOutputSymbolsToOutputDirectory>
|
|
<UseCodebase>true</UseCodebase>
|
|
|
|
<!-- Extension Info -->
|
|
<ExtensionInstallationRoot>Extensions</ExtensionInstallationRoot>
|
|
<ExtensionInstallationFolder>MarketAlly\OpenMaui</ExtensionInstallationFolder>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.VSSDK.BuildTools" Version="17.8.2365" />
|
|
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.8.37221" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="source.extension.vsixmanifest">
|
|
<SubType>Designer</SubType>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="ProjectTemplates\**\*">
|
|
<IncludeInVSIX>true</IncludeInVSIX>
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Resources\**\*">
|
|
<IncludeInVSIX>true</IncludeInVSIX>
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project>
|