Added Directory.Build.targets, this seems to help to import the target correctly. Removed chocolatey package again, as this seems to be the more stable approach (let's see if the build runs...)

This commit is contained in:
Robin Krom 2021-01-28 09:12:55 +01:00
commit 6831505ead
24 changed files with 175 additions and 186 deletions

View file

@ -1,4 +1,4 @@
namespace TranslationByMarkupExtension {
namespace GreenshotConfluencePlugin.Support {
public interface ITranslationProvider {
/// <summary>
/// Translates the specified key.

View file

@ -1,7 +1,7 @@
using System;
using System.Windows;
namespace TranslationByMarkupExtension
namespace GreenshotConfluencePlugin.Support
{
public class LanguageChangedEventManager : WeakEventManager
{

View file

@ -1,6 +1,6 @@
using GreenshotPlugin.Core;
namespace TranslationByMarkupExtension {
namespace GreenshotConfluencePlugin.Support {
/// <summary>
///
/// </summary>

View file

@ -2,7 +2,7 @@
using System.Windows.Data;
using System.Windows.Markup;
namespace TranslationByMarkupExtension
namespace GreenshotConfluencePlugin.Support
{
/// <summary>
/// The Translate Markup extension returns a binding to a TranslationData

View file

@ -2,7 +2,7 @@
using System.ComponentModel;
using System.Windows;
namespace TranslationByMarkupExtension {
namespace GreenshotConfluencePlugin.Support {
public class TranslationData : IWeakEventListener, INotifyPropertyChanged {
private readonly string _key;

View file

@ -1,6 +1,6 @@
using System;
namespace TranslationByMarkupExtension {
namespace GreenshotConfluencePlugin.Support {
public class TranslationManager {
private static TranslationManager _translationManager;