no more submodule
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using Mono.Addins;
|
||||
|
||||
namespace MonoDevelop.GtkSharp.Addin
|
||||
{
|
||||
public class CheckMissing : ConditionType
|
||||
{
|
||||
public override bool Evaluate(NodeElement conditionNode)
|
||||
{
|
||||
return AddinManager.GetExtensionNode("/MonoDevelop/Ide/ProjectTemplateCategories/crossplat/app") == null;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
using System.Diagnostics;
|
||||
using MonoDevelop.Ide.Desktop;
|
||||
|
||||
namespace MonoDevelop.GtkSharp.Addin
|
||||
{
|
||||
public class GladeDesktopApplication : DesktopApplication
|
||||
{
|
||||
private readonly string _filename;
|
||||
|
||||
public GladeDesktopApplication(string filename) : base("GladeApp", "Glade", true)
|
||||
{
|
||||
_filename = filename;
|
||||
}
|
||||
|
||||
public override void Launch(params string[] files)
|
||||
{
|
||||
Process.Start("glade", _filename);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
using MonoDevelop.Core;
|
||||
using MonoDevelop.Ide.Desktop;
|
||||
using MonoDevelop.Ide.Gui;
|
||||
using MonoDevelop.Projects;
|
||||
|
||||
namespace MonoDevelop.GtkSharp.Addin
|
||||
{
|
||||
public class GladeDisplayBinding : IExternalDisplayBinding
|
||||
{
|
||||
public bool CanUseAsDefault => true;
|
||||
|
||||
public bool CanHandle(FilePath fileName, string mimeType, Project ownerProject)
|
||||
{
|
||||
return fileName.Extension == ".glade";
|
||||
}
|
||||
|
||||
public DesktopApplication GetApplication(FilePath fileName, string mimeType, Project ownerProject)
|
||||
{
|
||||
return new GladeDesktopApplication(fileName.FullPath);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net471</TargetFramework>
|
||||
<OutputPath>..\..\..\BuildOutput\Addins\MonoDevelop\</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="MonoDevelop.Addins" Version="0.4.7" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Remove="Templates\File\Dialog.CS.xft.xml" />
|
||||
<None Remove="Templates\File\Widget.CS.xft.xml" />
|
||||
<None Remove="Templates\File\Window.CS.xft.xml" />
|
||||
<None Remove="Templates\File\Data\Dialog.glade" />
|
||||
<None Remove="Templates\File\Data\Widget.glade" />
|
||||
<None Remove="Templates\File\Data\Window.glade" />
|
||||
<None Remove="Templates\GtkSharp.Template.CSharp.nupkg" />
|
||||
<None Remove="Templates\GtkSharp.Template.VBNet.nupkg" />
|
||||
<None Remove="Templates\GtkSharp.Template.FSharp.nupkg" />
|
||||
<None Remove="Templates\File\Data\Dialog.fs" />
|
||||
<None Remove="Templates\File\Data\Widget.fs" />
|
||||
<None Remove="Templates\File\Data\Window.fs" />
|
||||
<None Remove="Templates\File\Dialog.FS.xft.xml" />
|
||||
<None Remove="Templates\File\Widget.FS.xft.xml" />
|
||||
<None Remove="Templates\File\Window.FS.xft.xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Templates\File\Dialog.CS.xft.xml">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Templates\File\Widget.CS.xft.xml">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Templates\File\Window.CS.xft.xml">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Templates\File\Data\Dialog.cs">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Templates\File\Data\Dialog.glade">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Templates\File\Data\Widget.cs">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Templates\File\Data\Widget.glade">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Templates\File\Data\Window.cs">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Templates\File\Data\Window.glade">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Templates\GtkSharp.Template.CSharp.nupkg">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Templates\GtkSharp.Template.FSharp.nupkg">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Templates\File\Data\Dialog.fs">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Templates\File\Data\Widget.fs">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Templates\File\Data\Window.fs">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Templates\File\Dialog.FS.xft.xml">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Templates\File\Widget.FS.xft.xml">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Templates\File\Window.FS.xft.xml">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Remove="Templates\File\Data\Dialog.cs" />
|
||||
<Compile Remove="Templates\File\Data\Widget.cs" />
|
||||
<Compile Remove="Templates\File\Data\Window.cs" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,17 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2012
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MonoDevelop.GtkSharp.Addin", "MonoDevelop.GtkSharp.Addin.csproj", "{F58399F1-E539-4625-873D-90045BDB519E}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{F58399F1-E539-4625-873D-90045BDB519E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{F58399F1-E539-4625-873D-90045BDB519E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{F58399F1-E539-4625-873D-90045BDB519E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{F58399F1-E539-4625-873D-90045BDB519E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
@@ -0,0 +1,12 @@
|
||||
using Mono.Addins;
|
||||
using Mono.Addins.Description;
|
||||
|
||||
[assembly: AddinName("GtkSharp Addin")]
|
||||
[assembly: AddinCategory("IDE extensions")]
|
||||
[assembly: AddinDescription("Provides modern Gtk project and file templates, as well as glade file integration.")]
|
||||
[assembly: AddinAuthor("GtkSharp Contributors")]
|
||||
[assembly: AddinUrl("https://github.com/GtkSharp/GtkSharp")]
|
||||
|
||||
[assembly: AddinDependency("MonoDevelop.Core", MonoDevelop.BuildInfo.Version)]
|
||||
[assembly: AddinDependency("MonoDevelop.Ide", MonoDevelop.BuildInfo.Version)]
|
||||
[assembly: AddinDependency("MonoDevelop.DotNetCore", MonoDevelop.BuildInfo.Version)]
|
||||
@@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ExtensionModel>
|
||||
<Runtime>
|
||||
<!-- Project Templates -->
|
||||
<Import file="Templates/GtkSharp.Template.CSharp.nupkg" />
|
||||
<Import file="Templates/GtkSharp.Template.FSharp.nupkg" />
|
||||
|
||||
<!-- File Templates -->
|
||||
<Import file="Templates/File/Data/Dialog.glade" />
|
||||
<Import file="Templates/File/Data/Widget.glade" />
|
||||
<Import file="Templates/File/Data/Window.glade" />
|
||||
|
||||
<Import file="Templates/File/Data/Dialog.cs" />
|
||||
<Import file="Templates/File/Data/Widget.cs" />
|
||||
<Import file="Templates/File/Data/Window.cs" />
|
||||
<Import file="Templates/File/Dialog.CS.xft.xml" />
|
||||
<Import file="Templates/File/Widget.CS.xft.xml" />
|
||||
<Import file="Templates/File/Window.CS.xft.xml" />
|
||||
|
||||
<Import file="Templates/File/Data/Dialog.fs" />
|
||||
<Import file="Templates/File/Data/Widget.fs" />
|
||||
<Import file="Templates/File/Data/Window.fs" />
|
||||
<Import file="Templates/File/Dialog.FS.xft.xml" />
|
||||
<Import file="Templates/File/Widget.FS.xft.xml" />
|
||||
<Import file="Templates/File/Window.FS.xft.xml" />
|
||||
</Runtime>
|
||||
|
||||
<ConditionType id="CheckMissing" type="MonoDevelop.GtkSharp.Addin.CheckMissing" />
|
||||
<Extension path="/MonoDevelop/Ide/ProjectTemplateCategories/multiplat">
|
||||
<Condition id="CheckMissing">
|
||||
<Category id="app" name="App" insertbefore="library" />
|
||||
</Condition>
|
||||
</Extension>
|
||||
|
||||
<Extension path="/MonoDevelop/Ide/ProjectTemplateCategories/multiplat/app">
|
||||
<Category id="gtk" name="Gtk" />
|
||||
</Extension>
|
||||
|
||||
<Extension path="/MonoDevelop/Ide/Templates">
|
||||
<Template
|
||||
id="GtkSharp.Application.CSharp"
|
||||
_overrideDescription="Creates a new Gtk multiplatform application."
|
||||
path="Templates/GtkSharp.Template.CSharp.nupkg"
|
||||
category="multiplat/app/gtk"
|
||||
icon="md-gui-project"
|
||||
imageId="md-gui-project" />
|
||||
<Template
|
||||
id="GtkSharp.Application.FSharp"
|
||||
_overrideDescription="Creates a new Gtk multiplatform application."
|
||||
path="Templates/GtkSharp.Template.FSharp.nupkg"
|
||||
category="multiplat/app/gtk"
|
||||
icon="md-gui-project"
|
||||
imageId="md-gui-project" />
|
||||
</Extension>
|
||||
|
||||
<Extension path="/MonoDevelop/Ide/FileTemplates">
|
||||
<FileTemplate id="gtk.cs.dialog" file="Templates/File/Dialog.CS.xft.xml" />
|
||||
<FileTemplate id="gtk.cs.widget" file="Templates/File/Widget.CS.xft.xml" />
|
||||
<FileTemplate id="gtk.cs.window" file="Templates/File/Window.CS.xft.xml" />
|
||||
|
||||
<FileTemplate id="gtk.fs.dialog" file="Templates/File/Dialog.FS.xft.xml" />
|
||||
<FileTemplate id="gtk.fs.widget" file="Templates/File/Widget.FS.xft.xml" />
|
||||
<FileTemplate id="gtk.fs.window" file="Templates/File/Window.FS.xft.xml" />
|
||||
</Extension>
|
||||
|
||||
<Extension path="/MonoDevelop/Ide/DisplayBindings">
|
||||
<DisplayBinding id="GladeApp" insertbefore="DefaultDisplayBinding" class="MonoDevelop.GtkSharp.Addin.GladeDisplayBinding" />
|
||||
</Extension>
|
||||
</ExtensionModel>
|
||||
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using Gtk;
|
||||
using UI = Gtk.Builder.ObjectAttribute;
|
||||
|
||||
namespace ${Namespace}
|
||||
{
|
||||
class ${EscapedIdentifier} : Dialog
|
||||
{
|
||||
public MyDialog() : this(new Builder("${Namespace}.${EscapedIdentifier}.glade")) { }
|
||||
|
||||
private MyDialog(Builder builder) : base(builder.GetObject("${EscapedIdentifier}").Handle)
|
||||
{
|
||||
builder.Autoconnect(this);
|
||||
DefaultResponse = ResponseType.Cancel;
|
||||
|
||||
Response += OnResponse;
|
||||
}
|
||||
|
||||
private void OnResponse(object o, ResponseArgs args)
|
||||
{
|
||||
Hide();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
namespace ${Namespace}
|
||||
|
||||
open Gtk
|
||||
|
||||
type ${EscapedIdentifier} (builder : Builder) as this =
|
||||
inherit Dialog(builder.GetObject("${EscapedIdentifier}").Handle)
|
||||
do
|
||||
this.DefaultResponse <- ResponseType.Cancel;
|
||||
this.Response.Add(fun _ ->
|
||||
this.Hide();
|
||||
)
|
||||
|
||||
new() = new ${EscapedIdentifier}(new Builder("${Namespace}.${EscapedIdentifier}.glade"))
|
||||
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<interface>
|
||||
<requires lib="gtk+" version="3.18"/>
|
||||
<object class="GtkDialog" id="${EscapedIdentifier}">
|
||||
<property name="can_focus">False</property>
|
||||
<property name="default_width">320</property>
|
||||
<property name="default_height">260</property>
|
||||
<property name="type_hint">dialog</property>
|
||||
<child internal-child="vbox">
|
||||
<object class="GtkBox">
|
||||
<property name="can_focus">False</property>
|
||||
<property name="orientation">vertical</property>
|
||||
<property name="spacing">2</property>
|
||||
<child internal-child="action_area">
|
||||
<object class="GtkButtonBox">
|
||||
<property name="can_focus">False</property>
|
||||
<property name="layout_style">end</property>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkButton" id="button1">
|
||||
<property name="label">gtk-close</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="receives_default">True</property>
|
||||
<property name="use_stock">True</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">True</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
<property name="position">0</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
<action-widgets>
|
||||
<action-widget response="-7">button1</action-widget>
|
||||
</action-widgets>
|
||||
</object>
|
||||
</interface>
|
||||
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using Gtk;
|
||||
using UI = Gtk.Builder.ObjectAttribute;
|
||||
|
||||
namespace ${Namespace}
|
||||
{
|
||||
public class ${EscapedIdentifier} : Box
|
||||
{
|
||||
public ${EscapedIdentifier}() : this(new Builder("${Namespace}.${EscapedIdentifier}.glade")) { }
|
||||
|
||||
private ${EscapedIdentifier}(Builder builder) : base(builder.GetObject("${EscapedIdentifier}").Handle)
|
||||
{
|
||||
builder.Autoconnect(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace ${Namespace}
|
||||
|
||||
open Gtk
|
||||
|
||||
type ${EscapedIdentifier} (builder : Builder) =
|
||||
inherit Box(builder.GetObject("${EscapedIdentifier}").Handle)
|
||||
|
||||
new() = new ${EscapedIdentifier}(new Builder("${Namespace}.${EscapedIdentifier}.glade"))
|
||||
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<interface>
|
||||
<requires lib="gtk+" version="3.18"/>
|
||||
<object class="GtkBox" id="${EscapedIdentifier}">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
</object>
|
||||
</interface>
|
||||
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using Gtk;
|
||||
using UI = Gtk.Builder.ObjectAttribute;
|
||||
|
||||
namespace ${Namespace}
|
||||
{
|
||||
class ${EscapedIdentifier} : Window
|
||||
{
|
||||
public ${EscapedIdentifier}() : this(new Builder("${Namespace}.${EscapedIdentifier}.glade")) { }
|
||||
|
||||
private ${EscapedIdentifier}(Builder builder) : base(builder.GetObject("${EscapedIdentifier}").Handle)
|
||||
{
|
||||
builder.Autoconnect(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace ${Namespace}
|
||||
|
||||
open Gtk
|
||||
|
||||
type ${EscapedIdentifier} (builder : Builder) =
|
||||
inherit Window(builder.GetObject("${EscapedIdentifier}").Handle)
|
||||
|
||||
new() = new ${EscapedIdentifier}(new Builder("${Namespace}.${EscapedIdentifier}.glade"))
|
||||
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<interface>
|
||||
<requires lib="gtk+" version="3.18"/>
|
||||
<object class="GtkWindow" id="${EscapedIdentifier}">
|
||||
<property name="can_focus">False</property>
|
||||
<property name="title" translatable="yes">${Name}</property>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
</object>
|
||||
</interface>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Template>
|
||||
<TemplateConfiguration>
|
||||
<_Name>Dialog</_Name>
|
||||
<Icon>md-gui-file</Icon>
|
||||
<_Category>Gtk</_Category>
|
||||
<LanguageName>C#</LanguageName>
|
||||
<DefaultFilename>MyDialog</DefaultFilename>
|
||||
<_Description>Creates a new Gtk dialog.</_Description>
|
||||
</TemplateConfiguration>
|
||||
|
||||
<TemplateFiles>
|
||||
<File name="${Name}.glade" src="Data/Dialog.glade" BuildAction="EmbeddedResource" SuppressAutoOpen="True" />
|
||||
<File name="${Name}.cs" src="Data/Dialog.cs" />
|
||||
</TemplateFiles>
|
||||
</Template>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Template>
|
||||
<TemplateConfiguration>
|
||||
<_Name>Dialog</_Name>
|
||||
<Icon>md-gui-file</Icon>
|
||||
<_Category>Gtk</_Category>
|
||||
<LanguageName>F#</LanguageName>
|
||||
<DefaultFilename>MyDialog</DefaultFilename>
|
||||
<_Description>Creates a new Gtk dialog.</_Description>
|
||||
</TemplateConfiguration>
|
||||
|
||||
<TemplateFiles>
|
||||
<File name="${Name}.glade" src="Data/Dialog.glade" BuildAction="EmbeddedResource" SuppressAutoOpen="True" />
|
||||
<File name="${Name}.fs" src="Data/Dialog.fs" />
|
||||
</TemplateFiles>
|
||||
</Template>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Template>
|
||||
<TemplateConfiguration>
|
||||
<_Name>Widget</_Name>
|
||||
<Icon>md-gui-file</Icon>
|
||||
<_Category>Gtk</_Category>
|
||||
<LanguageName>C#</LanguageName>
|
||||
<DefaultFilename>MyWidget</DefaultFilename>
|
||||
<_Description>Creates a new Gtk custom widget.</_Description>
|
||||
</TemplateConfiguration>
|
||||
|
||||
<TemplateFiles>
|
||||
<File name="${Name}.glade" src="Data/Widget.glade" BuildAction="EmbeddedResource" SuppressAutoOpen="True" />
|
||||
<File name="${Name}.cs" src="Data/Widget.cs" />
|
||||
</TemplateFiles>
|
||||
</Template>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Template>
|
||||
<TemplateConfiguration>
|
||||
<_Name>Widget</_Name>
|
||||
<Icon>md-gui-file</Icon>
|
||||
<_Category>Gtk</_Category>
|
||||
<LanguageName>F#</LanguageName>
|
||||
<DefaultFilename>MyWidget</DefaultFilename>
|
||||
<_Description>Creates a new Gtk custom widget.</_Description>
|
||||
</TemplateConfiguration>
|
||||
|
||||
<TemplateFiles>
|
||||
<File name="${Name}.glade" src="Data/Widget.glade" BuildAction="EmbeddedResource" SuppressAutoOpen="True" />
|
||||
<File name="${Name}.fs" src="Data/Widget.fs" />
|
||||
</TemplateFiles>
|
||||
</Template>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Template>
|
||||
<TemplateConfiguration>
|
||||
<_Name>Window</_Name>
|
||||
<Icon>md-gui-file</Icon>
|
||||
<_Category>Gtk</_Category>
|
||||
<LanguageName>C#</LanguageName>
|
||||
<DefaultFilename>MyWindow</DefaultFilename>
|
||||
<_Description>Creates a new Gtk window.</_Description>
|
||||
</TemplateConfiguration>
|
||||
|
||||
<TemplateFiles>
|
||||
<File name="${Name}.glade" src="Data/Window.glade" BuildAction="EmbeddedResource" SuppressAutoOpen="True" />
|
||||
<File name="${Name}.cs" src="Data/Window.cs" />
|
||||
</TemplateFiles>
|
||||
</Template>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Template>
|
||||
<TemplateConfiguration>
|
||||
<_Name>Window</_Name>
|
||||
<Icon>md-gui-file</Icon>
|
||||
<_Category>Gtk</_Category>
|
||||
<LanguageName>F#</LanguageName>
|
||||
<DefaultFilename>MyWindow</DefaultFilename>
|
||||
<_Description>Creates a new Gtk window.</_Description>
|
||||
</TemplateConfiguration>
|
||||
|
||||
<TemplateFiles>
|
||||
<File name="${Name}.glade" src="Data/Window.glade" BuildAction="EmbeddedResource" SuppressAutoOpen="True" />
|
||||
<File name="${Name}.fs" src="Data/Window.fs" />
|
||||
</TemplateFiles>
|
||||
</Template>
|
||||
@@ -0,0 +1,70 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"E:\\projects\\KioskApp\\GtkSharp\\Source\\Addins\\MonoDevelop.GtkSharp.Addin\\MonoDevelop.GtkSharp.Addin.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"E:\\projects\\KioskApp\\GtkSharp\\Source\\Addins\\MonoDevelop.GtkSharp.Addin\\MonoDevelop.GtkSharp.Addin.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "E:\\projects\\KioskApp\\GtkSharp\\Source\\Addins\\MonoDevelop.GtkSharp.Addin\\MonoDevelop.GtkSharp.Addin.csproj",
|
||||
"projectName": "MonoDevelop.GtkSharp.Addin",
|
||||
"projectPath": "E:\\projects\\KioskApp\\GtkSharp\\Source\\Addins\\MonoDevelop.GtkSharp.Addin\\MonoDevelop.GtkSharp.Addin.csproj",
|
||||
"packagesPath": "C:\\Users\\Uther\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\projects\\KioskApp\\GtkSharp\\Source\\Addins\\MonoDevelop.GtkSharp.Addin\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Uther\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net471"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {},
|
||||
"https://nuget.BepInEx.dev/v3/index.json": {},
|
||||
"https://www.myget.org/f/umod/api/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": {
|
||||
"targetAlias": "net471",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": {
|
||||
"targetAlias": "net471",
|
||||
"dependencies": {
|
||||
"Microsoft.NETFramework.ReferenceAssemblies": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.0.3, )",
|
||||
"autoReferenced": true
|
||||
},
|
||||
"MonoDevelop.Addins": {
|
||||
"target": "Package",
|
||||
"version": "[0.4.7, )"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.206\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Uther\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.9.1</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Uther\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)monodevelop.addins\0.4.7\build\MonoDevelop.Addins.props" Condition="Exists('$(NuGetPackageRoot)monodevelop.addins\0.4.7\build\MonoDevelop.Addins.props')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)monodevelop.addins\0.4.7\build\MonoDevelop.Addins.targets" Condition="Exists('$(NuGetPackageRoot)monodevelop.addins\0.4.7\build\MonoDevelop.Addins.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.netframework.referenceassemblies.net471\1.0.3\build\Microsoft.NETFramework.ReferenceAssemblies.net471.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.netframework.referenceassemblies.net471\1.0.3\build\Microsoft.NETFramework.ReferenceAssemblies.net471.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,514 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
".NETFramework,Version=v4.7.1": {
|
||||
"Microsoft.NETFramework.ReferenceAssemblies/1.0.3": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.NETFramework.ReferenceAssemblies.net471": "1.0.3"
|
||||
}
|
||||
},
|
||||
"Microsoft.NETFramework.ReferenceAssemblies.net471/1.0.3": {
|
||||
"type": "package",
|
||||
"build": {
|
||||
"build/Microsoft.NETFramework.ReferenceAssemblies.net471.targets": {}
|
||||
}
|
||||
},
|
||||
"MonoDevelop.Addins/0.4.7": {
|
||||
"type": "package",
|
||||
"build": {
|
||||
"build/MonoDevelop.Addins.props": {},
|
||||
"build/MonoDevelop.Addins.targets": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Microsoft.NETFramework.ReferenceAssemblies/1.0.3": {
|
||||
"sha512": "vUc9Npcs14QsyOD01tnv/m8sQUnGTGOw1BCmKcv77LBJY7OxhJ+zJF7UD/sCL3lYNFuqmQEVlkfS4Quif6FyYg==",
|
||||
"type": "package",
|
||||
"path": "microsoft.netframework.referenceassemblies/1.0.3",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"microsoft.netframework.referenceassemblies.1.0.3.nupkg.sha512",
|
||||
"microsoft.netframework.referenceassemblies.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.NETFramework.ReferenceAssemblies.net471/1.0.3": {
|
||||
"sha512": "Kf3vusy+mwHzn+0osmJAMrZNG00/UkwywjwfFKLUWSYEXiIMD6SEMGP9bG3sH1B54IiydxAneLubS5/Ajjn/Tw==",
|
||||
"type": "package",
|
||||
"path": "microsoft.netframework.referenceassemblies.net471/1.0.3",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"build/.NETFramework/v4.7.1/Accessibility.dll",
|
||||
"build/.NETFramework/v4.7.1/Accessibility.xml",
|
||||
"build/.NETFramework/v4.7.1/CustomMarshalers.dll",
|
||||
"build/.NETFramework/v4.7.1/CustomMarshalers.xml",
|
||||
"build/.NETFramework/v4.7.1/Facades/Microsoft.Win32.Primitives.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.AppContext.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Collections.Concurrent.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Collections.NonGeneric.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Collections.Specialized.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Collections.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.ComponentModel.Annotations.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.ComponentModel.EventBasedAsync.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.ComponentModel.Primitives.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.ComponentModel.TypeConverter.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.ComponentModel.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Console.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Data.Common.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Diagnostics.Contracts.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Diagnostics.Debug.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Diagnostics.FileVersionInfo.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Diagnostics.Process.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Diagnostics.StackTrace.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Diagnostics.TextWriterTraceListener.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Diagnostics.Tools.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Diagnostics.TraceSource.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Drawing.Primitives.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Dynamic.Runtime.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Globalization.Calendars.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Globalization.Extensions.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Globalization.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.IO.Compression.ZipFile.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.IO.FileSystem.DriveInfo.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.IO.FileSystem.Primitives.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.IO.FileSystem.Watcher.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.IO.FileSystem.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.IO.IsolatedStorage.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.IO.MemoryMappedFiles.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.IO.Pipes.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.IO.UnmanagedMemoryStream.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.IO.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Linq.Expressions.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Linq.Parallel.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Linq.Queryable.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Linq.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Net.Http.Rtc.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Net.NameResolution.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Net.NetworkInformation.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Net.Ping.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Net.Primitives.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Net.Requests.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Net.Security.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Net.Sockets.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Net.WebHeaderCollection.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Net.WebSockets.Client.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Net.WebSockets.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.ObjectModel.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Reflection.Emit.ILGeneration.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Reflection.Emit.Lightweight.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Reflection.Emit.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Reflection.Extensions.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Reflection.Primitives.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Reflection.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Resources.Reader.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Resources.ResourceManager.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Resources.Writer.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Runtime.CompilerServices.VisualC.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Runtime.Extensions.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Runtime.Handles.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Runtime.InteropServices.RuntimeInformation.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Runtime.InteropServices.WindowsRuntime.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Runtime.InteropServices.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Runtime.Numerics.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Runtime.Serialization.Formatters.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Runtime.Serialization.Json.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Runtime.Serialization.Primitives.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Runtime.Serialization.Xml.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Runtime.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Security.Claims.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Security.Cryptography.Algorithms.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Security.Cryptography.Csp.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Security.Cryptography.Encoding.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Security.Cryptography.Primitives.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Security.Cryptography.X509Certificates.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Security.Principal.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Security.SecureString.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.ServiceModel.Duplex.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.ServiceModel.Http.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.ServiceModel.NetTcp.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.ServiceModel.Primitives.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.ServiceModel.Security.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Text.Encoding.Extensions.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Text.Encoding.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Text.RegularExpressions.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Threading.Overlapped.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Threading.Tasks.Parallel.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Threading.Tasks.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Threading.Thread.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Threading.ThreadPool.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Threading.Timer.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Threading.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.ValueTuple.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Xml.ReaderWriter.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Xml.XDocument.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Xml.XPath.XDocument.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Xml.XPath.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Xml.XmlDocument.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/System.Xml.XmlSerializer.dll",
|
||||
"build/.NETFramework/v4.7.1/Facades/netstandard.dll",
|
||||
"build/.NETFramework/v4.7.1/ISymWrapper.dll",
|
||||
"build/.NETFramework/v4.7.1/ISymWrapper.xml",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.Activities.Build.dll",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.Activities.Build.xml",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.Build.Conversion.v4.0.dll",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.Build.Conversion.v4.0.xml",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.Build.Engine.dll",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.Build.Engine.xml",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.Build.Framework.dll",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.Build.Framework.xml",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.Build.Tasks.v4.0.dll",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.Build.Tasks.v4.0.xml",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.Build.Utilities.v4.0.dll",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.Build.Utilities.v4.0.xml",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.Build.dll",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.Build.xml",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.CSharp.dll",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.CSharp.xml",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.JScript.dll",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.JScript.xml",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.VisualBasic.Compatibility.Data.dll",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.VisualBasic.Compatibility.Data.xml",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.VisualBasic.Compatibility.dll",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.VisualBasic.Compatibility.xml",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.VisualBasic.dll",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.VisualBasic.xml",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.VisualC.STLCLR.dll",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.VisualC.STLCLR.xml",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.VisualC.dll",
|
||||
"build/.NETFramework/v4.7.1/Microsoft.VisualC.xml",
|
||||
"build/.NETFramework/v4.7.1/PermissionSets/FullTrust.xml",
|
||||
"build/.NETFramework/v4.7.1/PermissionSets/Internet.xml",
|
||||
"build/.NETFramework/v4.7.1/PermissionSets/LocalIntranet.xml",
|
||||
"build/.NETFramework/v4.7.1/PresentationBuildTasks.dll",
|
||||
"build/.NETFramework/v4.7.1/PresentationBuildTasks.xml",
|
||||
"build/.NETFramework/v4.7.1/PresentationCore.dll",
|
||||
"build/.NETFramework/v4.7.1/PresentationCore.xml",
|
||||
"build/.NETFramework/v4.7.1/PresentationFramework.Aero.dll",
|
||||
"build/.NETFramework/v4.7.1/PresentationFramework.Aero.xml",
|
||||
"build/.NETFramework/v4.7.1/PresentationFramework.Aero2.dll",
|
||||
"build/.NETFramework/v4.7.1/PresentationFramework.Aero2.xml",
|
||||
"build/.NETFramework/v4.7.1/PresentationFramework.AeroLite.dll",
|
||||
"build/.NETFramework/v4.7.1/PresentationFramework.AeroLite.xml",
|
||||
"build/.NETFramework/v4.7.1/PresentationFramework.Classic.dll",
|
||||
"build/.NETFramework/v4.7.1/PresentationFramework.Classic.xml",
|
||||
"build/.NETFramework/v4.7.1/PresentationFramework.Luna.dll",
|
||||
"build/.NETFramework/v4.7.1/PresentationFramework.Luna.xml",
|
||||
"build/.NETFramework/v4.7.1/PresentationFramework.Royale.dll",
|
||||
"build/.NETFramework/v4.7.1/PresentationFramework.Royale.xml",
|
||||
"build/.NETFramework/v4.7.1/PresentationFramework.dll",
|
||||
"build/.NETFramework/v4.7.1/PresentationFramework.xml",
|
||||
"build/.NETFramework/v4.7.1/ReachFramework.dll",
|
||||
"build/.NETFramework/v4.7.1/ReachFramework.xml",
|
||||
"build/.NETFramework/v4.7.1/RedistList/FrameworkList.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Activities.Core.Presentation.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Activities.Core.Presentation.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Activities.DurableInstancing.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Activities.DurableInstancing.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Activities.Presentation.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Activities.Presentation.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Activities.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Activities.xml",
|
||||
"build/.NETFramework/v4.7.1/System.AddIn.Contract.dll",
|
||||
"build/.NETFramework/v4.7.1/System.AddIn.Contract.xml",
|
||||
"build/.NETFramework/v4.7.1/System.AddIn.dll",
|
||||
"build/.NETFramework/v4.7.1/System.AddIn.xml",
|
||||
"build/.NETFramework/v4.7.1/System.ComponentModel.Composition.Registration.dll",
|
||||
"build/.NETFramework/v4.7.1/System.ComponentModel.Composition.Registration.xml",
|
||||
"build/.NETFramework/v4.7.1/System.ComponentModel.Composition.dll",
|
||||
"build/.NETFramework/v4.7.1/System.ComponentModel.Composition.xml",
|
||||
"build/.NETFramework/v4.7.1/System.ComponentModel.DataAnnotations.dll",
|
||||
"build/.NETFramework/v4.7.1/System.ComponentModel.DataAnnotations.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Configuration.Install.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Configuration.Install.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Configuration.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Configuration.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Core.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Core.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Data.DataSetExtensions.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Data.DataSetExtensions.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Data.Entity.Design.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Data.Entity.Design.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Data.Entity.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Data.Entity.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Data.Linq.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Data.Linq.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Data.OracleClient.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Data.OracleClient.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Data.Services.Client.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Data.Services.Client.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Data.Services.Design.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Data.Services.Design.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Data.Services.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Data.Services.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Data.SqlXml.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Data.SqlXml.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Data.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Data.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Deployment.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Deployment.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Design.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Design.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Device.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Device.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Diagnostics.Tracing.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Diagnostics.Tracing.xml",
|
||||
"build/.NETFramework/v4.7.1/System.DirectoryServices.AccountManagement.dll",
|
||||
"build/.NETFramework/v4.7.1/System.DirectoryServices.AccountManagement.xml",
|
||||
"build/.NETFramework/v4.7.1/System.DirectoryServices.Protocols.dll",
|
||||
"build/.NETFramework/v4.7.1/System.DirectoryServices.Protocols.xml",
|
||||
"build/.NETFramework/v4.7.1/System.DirectoryServices.dll",
|
||||
"build/.NETFramework/v4.7.1/System.DirectoryServices.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Drawing.Design.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Drawing.Design.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Drawing.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Drawing.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Dynamic.dll",
|
||||
"build/.NETFramework/v4.7.1/System.EnterpriseServices.Thunk.dll",
|
||||
"build/.NETFramework/v4.7.1/System.EnterpriseServices.Wrapper.dll",
|
||||
"build/.NETFramework/v4.7.1/System.EnterpriseServices.dll",
|
||||
"build/.NETFramework/v4.7.1/System.EnterpriseServices.xml",
|
||||
"build/.NETFramework/v4.7.1/System.IO.Compression.FileSystem.dll",
|
||||
"build/.NETFramework/v4.7.1/System.IO.Compression.FileSystem.xml",
|
||||
"build/.NETFramework/v4.7.1/System.IO.Compression.dll",
|
||||
"build/.NETFramework/v4.7.1/System.IO.Compression.xml",
|
||||
"build/.NETFramework/v4.7.1/System.IO.Log.dll",
|
||||
"build/.NETFramework/v4.7.1/System.IO.Log.xml",
|
||||
"build/.NETFramework/v4.7.1/System.IdentityModel.Selectors.dll",
|
||||
"build/.NETFramework/v4.7.1/System.IdentityModel.Selectors.xml",
|
||||
"build/.NETFramework/v4.7.1/System.IdentityModel.Services.dll",
|
||||
"build/.NETFramework/v4.7.1/System.IdentityModel.Services.xml",
|
||||
"build/.NETFramework/v4.7.1/System.IdentityModel.dll",
|
||||
"build/.NETFramework/v4.7.1/System.IdentityModel.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Linq.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Management.Instrumentation.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Management.Instrumentation.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Management.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Management.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Messaging.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Messaging.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Net.Http.WebRequest.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Net.Http.WebRequest.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Net.Http.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Net.Http.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Net.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Net.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Numerics.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Numerics.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Printing.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Printing.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Reflection.Context.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Reflection.Context.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Runtime.Caching.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Runtime.Caching.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Runtime.DurableInstancing.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Runtime.DurableInstancing.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Runtime.Remoting.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Runtime.Remoting.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Runtime.Serialization.Formatters.Soap.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Runtime.Serialization.Formatters.Soap.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Runtime.Serialization.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Runtime.Serialization.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Security.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Security.xml",
|
||||
"build/.NETFramework/v4.7.1/System.ServiceModel.Activation.dll",
|
||||
"build/.NETFramework/v4.7.1/System.ServiceModel.Activation.xml",
|
||||
"build/.NETFramework/v4.7.1/System.ServiceModel.Activities.dll",
|
||||
"build/.NETFramework/v4.7.1/System.ServiceModel.Activities.xml",
|
||||
"build/.NETFramework/v4.7.1/System.ServiceModel.Channels.dll",
|
||||
"build/.NETFramework/v4.7.1/System.ServiceModel.Channels.xml",
|
||||
"build/.NETFramework/v4.7.1/System.ServiceModel.Discovery.dll",
|
||||
"build/.NETFramework/v4.7.1/System.ServiceModel.Discovery.xml",
|
||||
"build/.NETFramework/v4.7.1/System.ServiceModel.Routing.dll",
|
||||
"build/.NETFramework/v4.7.1/System.ServiceModel.Routing.xml",
|
||||
"build/.NETFramework/v4.7.1/System.ServiceModel.Web.dll",
|
||||
"build/.NETFramework/v4.7.1/System.ServiceModel.Web.xml",
|
||||
"build/.NETFramework/v4.7.1/System.ServiceModel.dll",
|
||||
"build/.NETFramework/v4.7.1/System.ServiceModel.xml",
|
||||
"build/.NETFramework/v4.7.1/System.ServiceProcess.dll",
|
||||
"build/.NETFramework/v4.7.1/System.ServiceProcess.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Speech.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Speech.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Threading.Tasks.Dataflow.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Transactions.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Transactions.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Web.Abstractions.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Web.ApplicationServices.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Web.ApplicationServices.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Web.DataVisualization.Design.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Web.DataVisualization.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Web.DataVisualization.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Web.DynamicData.Design.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Web.DynamicData.Design.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Web.DynamicData.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Web.DynamicData.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Web.Entity.Design.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Web.Entity.Design.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Web.Entity.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Web.Entity.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Web.Extensions.Design.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Web.Extensions.Design.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Web.Extensions.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Web.Extensions.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Web.Mobile.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Web.Mobile.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Web.RegularExpressions.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Web.RegularExpressions.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Web.Routing.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Web.Services.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Web.Services.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Web.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Web.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Windows.Controls.Ribbon.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Windows.Controls.Ribbon.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Windows.Forms.DataVisualization.Design.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Windows.Forms.DataVisualization.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Windows.Forms.DataVisualization.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Windows.Forms.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Windows.Forms.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Windows.Input.Manipulations.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Windows.Input.Manipulations.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Windows.Presentation.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Windows.Presentation.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Windows.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Workflow.Activities.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Workflow.Activities.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Workflow.ComponentModel.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Workflow.ComponentModel.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Workflow.Runtime.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Workflow.Runtime.xml",
|
||||
"build/.NETFramework/v4.7.1/System.WorkflowServices.dll",
|
||||
"build/.NETFramework/v4.7.1/System.WorkflowServices.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Xaml.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Xaml.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Xml.Linq.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Xml.Linq.xml",
|
||||
"build/.NETFramework/v4.7.1/System.Xml.Serialization.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Xml.dll",
|
||||
"build/.NETFramework/v4.7.1/System.Xml.xml",
|
||||
"build/.NETFramework/v4.7.1/System.dll",
|
||||
"build/.NETFramework/v4.7.1/System.xml",
|
||||
"build/.NETFramework/v4.7.1/UIAutomationClient.dll",
|
||||
"build/.NETFramework/v4.7.1/UIAutomationClient.xml",
|
||||
"build/.NETFramework/v4.7.1/UIAutomationClientsideProviders.dll",
|
||||
"build/.NETFramework/v4.7.1/UIAutomationClientsideProviders.xml",
|
||||
"build/.NETFramework/v4.7.1/UIAutomationProvider.dll",
|
||||
"build/.NETFramework/v4.7.1/UIAutomationProvider.xml",
|
||||
"build/.NETFramework/v4.7.1/UIAutomationTypes.dll",
|
||||
"build/.NETFramework/v4.7.1/UIAutomationTypes.xml",
|
||||
"build/.NETFramework/v4.7.1/WindowsBase.dll",
|
||||
"build/.NETFramework/v4.7.1/WindowsBase.xml",
|
||||
"build/.NETFramework/v4.7.1/WindowsFormsIntegration.dll",
|
||||
"build/.NETFramework/v4.7.1/WindowsFormsIntegration.xml",
|
||||
"build/.NETFramework/v4.7.1/XamlBuildTask.dll",
|
||||
"build/.NETFramework/v4.7.1/XamlBuildTask.xml",
|
||||
"build/.NETFramework/v4.7.1/mscorlib.dll",
|
||||
"build/.NETFramework/v4.7.1/mscorlib.xml",
|
||||
"build/.NETFramework/v4.7.1/namespaces.xml",
|
||||
"build/.NETFramework/v4.7.1/sysglobl.dll",
|
||||
"build/.NETFramework/v4.7.1/sysglobl.xml",
|
||||
"build/Microsoft.NETFramework.ReferenceAssemblies.net471.targets",
|
||||
"microsoft.netframework.referenceassemblies.net471.1.0.3.nupkg.sha512",
|
||||
"microsoft.netframework.referenceassemblies.net471.nuspec"
|
||||
]
|
||||
},
|
||||
"MonoDevelop.Addins/0.4.7": {
|
||||
"sha512": "BsHge9bKGrNvZJLNEjCjj4w4b9b0r1QI+PZ6Oa6wXEPmePJszwUlXau8hCU4QGH1WRtF1kt77wOLSqSydS62wQ==",
|
||||
"type": "package",
|
||||
"path": "monodevelop.addins/0.4.7",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"build/ICSharpCode.SharpZipLib.dll",
|
||||
"build/Mono.Addins.CecilReflector.dll",
|
||||
"build/Mono.Addins.Setup.dll",
|
||||
"build/Mono.Addins.dll",
|
||||
"build/Mono.Cecil.Mdb.dll",
|
||||
"build/Mono.Cecil.Pdb.dll",
|
||||
"build/Mono.Cecil.Rocks.dll",
|
||||
"build/Mono.Cecil.dll",
|
||||
"build/MonoDevelop.Addins.Tasks.dll",
|
||||
"build/MonoDevelop.Addins.Tasks.pdb",
|
||||
"build/MonoDevelop.Addins.props",
|
||||
"build/MonoDevelop.Addins.targets",
|
||||
"monodevelop.addins.0.4.7.nupkg.sha512",
|
||||
"monodevelop.addins.nuspec"
|
||||
]
|
||||
}
|
||||
},
|
||||
"projectFileDependencyGroups": {
|
||||
".NETFramework,Version=v4.7.1": [
|
||||
"Microsoft.NETFramework.ReferenceAssemblies >= 1.0.3",
|
||||
"MonoDevelop.Addins >= 0.4.7"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\Uther\\.nuget\\packages\\": {},
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "E:\\projects\\KioskApp\\GtkSharp\\Source\\Addins\\MonoDevelop.GtkSharp.Addin\\MonoDevelop.GtkSharp.Addin.csproj",
|
||||
"projectName": "MonoDevelop.GtkSharp.Addin",
|
||||
"projectPath": "E:\\projects\\KioskApp\\GtkSharp\\Source\\Addins\\MonoDevelop.GtkSharp.Addin\\MonoDevelop.GtkSharp.Addin.csproj",
|
||||
"packagesPath": "C:\\Users\\Uther\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\projects\\KioskApp\\GtkSharp\\Source\\Addins\\MonoDevelop.GtkSharp.Addin\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Uther\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net471"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {},
|
||||
"https://nuget.BepInEx.dev/v3/index.json": {},
|
||||
"https://www.myget.org/f/umod/api/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": {
|
||||
"targetAlias": "net471",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": {
|
||||
"targetAlias": "net471",
|
||||
"dependencies": {
|
||||
"Microsoft.NETFramework.ReferenceAssemblies": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.0.3, )",
|
||||
"autoReferenced": true
|
||||
},
|
||||
"MonoDevelop.Addins": {
|
||||
"target": "Package",
|
||||
"version": "[0.4.7, )"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.206\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "/znAqfHsQ/En0Q6oJ2mIc2MJszH9RMo1PHG7KDLE9xps5CjoJr3vh9PDdEk+cM+/Vu0PHhF9kAA7iSb3thSiZg==",
|
||||
"success": true,
|
||||
"projectFilePath": "E:\\projects\\KioskApp\\GtkSharp\\Source\\Addins\\MonoDevelop.GtkSharp.Addin\\MonoDevelop.GtkSharp.Addin.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\Uther\\.nuget\\packages\\microsoft.netframework.referenceassemblies\\1.0.3\\microsoft.netframework.referenceassemblies.1.0.3.nupkg.sha512",
|
||||
"C:\\Users\\Uther\\.nuget\\packages\\microsoft.netframework.referenceassemblies.net471\\1.0.3\\microsoft.netframework.referenceassemblies.net471.1.0.3.nupkg.sha512",
|
||||
"C:\\Users\\Uther\\.nuget\\packages\\monodevelop.addins\\0.4.7\\monodevelop.addins.0.4.7.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
Reference in New Issue
Block a user