mirror of
https://github.com/greenshot/greenshot.git
synced 2025-01-24 14:12:52 -08:00
1751880581
Fixed an issue that some destinations were not visible as they were exported wrong.
53 lines
2.0 KiB
XML
53 lines
2.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<RootNamespace>GreenshotOfficePlugin</RootNamespace>
|
|
<AssemblyName>GreenshotOfficePlugin</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="Languages\language*.xml">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GreenshotPlugin\GreenshotPlugin.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Interop.Microsoft.Office.Interop.OneNote" Version="1.1.0">
|
|
<EmbedInteropTypes>true</EmbedInteropTypes>
|
|
<ExcludeAssets>runtime</ExcludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Office.Interop.Excel" Version="15.0.4795.1000">
|
|
<EmbedInteropTypes>true</EmbedInteropTypes>
|
|
<ExcludeAssets>runtime</ExcludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Office.Interop.Outlook" Version="15.0.4797.1003">
|
|
<EmbedInteropTypes>true</EmbedInteropTypes>
|
|
<ExcludeAssets>runtime</ExcludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Office.Interop.PowerPoint" Version="15.0.4420.1017">
|
|
<EmbedInteropTypes>true</EmbedInteropTypes>
|
|
<ExcludeAssets>runtime</ExcludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Office.Interop.Word" Version="15.0.4797.1003">
|
|
<EmbedInteropTypes>true</EmbedInteropTypes>
|
|
<ExcludeAssets>runtime</ExcludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="MicrosoftOfficeCore" Version="15.0.0">
|
|
<EmbedInteropTypes>True</EmbedInteropTypes>
|
|
<ExcludeAssets>runtime</ExcludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Unofficial.Microsoft.mshtml" Version="7.0.3300">
|
|
<EmbedInteropTypes>True</EmbedInteropTypes>
|
|
<ExcludeAssets>runtime</ExcludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="CustomMarshalers" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|