no more submodule
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
<Project Sdk="Microsoft.Build.NoTargets">
|
||||
|
||||
<Import Project="..\Shared\Templates.targets" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Title>GTK templates for Visual Basic</Title>
|
||||
<Description>A set of Visual Basic templates for your .NET GTK Application. Installed with the GtkSharp .NET workload.</Description>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<_GtkSharpTemplateContent Include="content\**" />
|
||||
<_GtkSharpTemplateContent Remove="**\*.in.*" />
|
||||
<None Include="@(_GtkSharpTemplateContent)"
|
||||
CopyToOutputDirectory="PreserveNewest"
|
||||
Pack="true"
|
||||
PackagePath="content"
|
||||
/>
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="..\Shared\ReplaceText.targets" />
|
||||
|
||||
<Target Name="_ReplaceJsonText"
|
||||
BeforeTargets="Build;AssignTargetPaths"
|
||||
Inputs="$(MSBuildProjectFile);content\GtkSharp.Application.VBNet\.template.config\template.in.json"
|
||||
Outputs="$(IntermediateOutputPath)template.json">
|
||||
|
||||
<ReplaceText
|
||||
Input="content\GtkSharp.Application.VBNet\.template.config\template.in.json"
|
||||
Output="$(IntermediateOutputPath)template.json"
|
||||
OldValue="@GTKSHARPNETVERSION@"
|
||||
NewValue="$(_GtkSharpNetVersion)"
|
||||
/>
|
||||
|
||||
<ItemGroup>
|
||||
<None
|
||||
Include="$(IntermediateOutputPath)template.json"
|
||||
Link="content\GtkSharp.Application.VBNet\.template.config\template.json"
|
||||
CopyToOutputDirectory="PreserveNewest"
|
||||
Pack="true"
|
||||
PackagePath="content\GtkSharp.Application.VBNet\.template.config\template.json"
|
||||
/>
|
||||
<FileWrites Include="$(IntermediateOutputPath)template.json" />
|
||||
</ItemGroup>
|
||||
|
||||
</Target>
|
||||
|
||||
</Project>
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"$schema": "http://json.schemastore.org/template",
|
||||
"author": "GtkSharp Contributors",
|
||||
"classifications": [
|
||||
"Gtk",
|
||||
"GUI App"
|
||||
],
|
||||
"name": "Gtk Application",
|
||||
"identity": "GtkSharp.Application.VBNet",
|
||||
"groupIdentity": "GtkSharp.Application",
|
||||
"shortName": "gtk",
|
||||
"tags": {
|
||||
"language": "VB",
|
||||
"type": "project"
|
||||
},
|
||||
"sourceName": "GtkNamespace",
|
||||
"preferNameDirectory": true,
|
||||
"symbols": {
|
||||
"targetframework": {
|
||||
"type": "parameter",
|
||||
"description": "The target framework for the project.",
|
||||
"defaultValue": "net@GTKSHARPNETVERSION@-gtk",
|
||||
"replaces": "$(FrameworkParameter)"
|
||||
}
|
||||
},
|
||||
"primaryOutputs": [
|
||||
{ "path": "GtkNamespace.vbproj" }
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>$(FrameworkParameter)</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Remove="**\*.glade" />
|
||||
<EmbeddedResource Include="**\*.glade">
|
||||
<LogicalName>%(Filename)%(Extension)</LogicalName>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="GtkSharp" Version="3.24.24.*" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
@@ -0,0 +1,46 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<interface>
|
||||
<requires lib="gtk+" version="3.18"/>
|
||||
<object class="GtkWindow" id="MainWindow">
|
||||
<property name="can_focus">False</property>
|
||||
<property name="title" translatable="yes">Example Window</property>
|
||||
<property name="default_width">480</property>
|
||||
<property name="default_height">240</property>
|
||||
<child>
|
||||
<object class="GtkBox">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="margin_left">4</property>
|
||||
<property name="margin_right">4</property>
|
||||
<property name="margin_top">4</property>
|
||||
<property name="margin_bottom">4</property>
|
||||
<property name="orientation">vertical</property>
|
||||
<child>
|
||||
<object class="GtkLabel" id="_label1">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="label" translatable="yes">Hello World!</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">True</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">0</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkButton" id="_button1">
|
||||
<property name="label" translatable="yes">Click me!</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="receives_default">True</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</interface>
|
||||
@@ -0,0 +1,37 @@
|
||||
Imports System
|
||||
Imports Gtk
|
||||
Imports UI = Gtk.Builder.ObjectAttribute
|
||||
|
||||
Namespace GtkNamespace
|
||||
Public Class MainWindow
|
||||
Inherits Window
|
||||
|
||||
Private _counter = 0
|
||||
<UI>Private _label1 As Label
|
||||
<UI>Private _button1 As Button
|
||||
|
||||
Public Sub New (builder as Builder)
|
||||
MyBase.New(builder.GetRawOwnedObject("MainWindow"))
|
||||
|
||||
builder.Autoconnect (Me)
|
||||
|
||||
AddHandler MyBase.DeleteEvent, AddressOf Window_Delete
|
||||
AddHandler _button1.Clicked, AddressOf Button1_Clicked
|
||||
End Sub
|
||||
|
||||
Public Sub New ()
|
||||
Me.New(new Builder("MainWindow.glade"))
|
||||
End Sub
|
||||
|
||||
Private Sub Window_Delete (ByVal sender As Object, ByVal a As DeleteEventArgs)
|
||||
Application.Quit ()
|
||||
a.RetVal = true
|
||||
End Sub
|
||||
|
||||
Private Sub Button1_Clicked (ByVal sender As Object, ByVal a As EventArgs)
|
||||
_counter += 1
|
||||
_label1.Text = "Hello World! This button has been clicked " + _counter.ToString() + " time(s)."
|
||||
End Sub
|
||||
|
||||
End Class
|
||||
End Namespace
|
||||
@@ -0,0 +1,21 @@
|
||||
Imports System
|
||||
Imports Gtk
|
||||
|
||||
Namespace GtkNamespace
|
||||
Public Class MainClass
|
||||
|
||||
Public Shared Sub Main ()
|
||||
Application.Init ()
|
||||
|
||||
Dim app as new Application ("org.GtkNamespace.GtkNamespace", GLib.ApplicationFlags.None)
|
||||
app.Register (GLib.Cancellable.Current)
|
||||
|
||||
Dim win as new MainWindow ()
|
||||
app.AddWindow (win)
|
||||
|
||||
win.Show ()
|
||||
Application.Run ()
|
||||
End Sub
|
||||
|
||||
End Class
|
||||
End Namespace
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"$schema": "http://json.schemastore.org/template",
|
||||
"author": "GtkSharp Contributors",
|
||||
"classifications": [
|
||||
"Gtk",
|
||||
"UI"
|
||||
],
|
||||
"name": "Gtk Dialog",
|
||||
"identity": "GtkSharp.Dialog.VBNet",
|
||||
"groupIdentity": "GtkSharp.Dialog",
|
||||
"shortName": "gtkdialog",
|
||||
"tags": {
|
||||
"language": "VB",
|
||||
"type": "item"
|
||||
},
|
||||
"sourceName": "Gtk_Dialog",
|
||||
"primaryOutputs": [
|
||||
{
|
||||
"path": "Gtk_Dialog.vb"
|
||||
},
|
||||
{
|
||||
"path": "Gtk_Dialog.glade"
|
||||
}
|
||||
],
|
||||
"defaultName": "Gtk_Dialog",
|
||||
"symbols": {
|
||||
"namespace": {
|
||||
"description": "Namespace for the generated files",
|
||||
"replaces": "GtkNamespace",
|
||||
"type": "parameter"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<interface>
|
||||
<requires lib="gtk+" version="3.18"/>
|
||||
<object class="GtkDialog" id="Gtk_Dialog">
|
||||
<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,27 @@
|
||||
Imports System
|
||||
Imports Gtk
|
||||
Imports UI = Gtk.Builder.ObjectAttribute
|
||||
|
||||
Namespace GtkNamespace
|
||||
Public Class Gtk_Dialog
|
||||
Inherits Dialog
|
||||
|
||||
Public Sub New (builder as Builder)
|
||||
MyBase.New (builder.GetRawOwnedObject("Gtk_Dialog"))
|
||||
|
||||
builder.Autoconnect (Me)
|
||||
DefaultResponse = ResponseType.Cancel
|
||||
|
||||
AddHandler MyBase.Response, AddressOf Dialog_OnResponse
|
||||
End Sub
|
||||
|
||||
Public Sub New ()
|
||||
Me.New (new Builder ("Gtk_Dialog.glade"))
|
||||
End Sub
|
||||
|
||||
Private Sub Dialog_OnResponse (ByVal sender As Object, ByVal args As ResponseArgs)
|
||||
Hide ()
|
||||
End Sub
|
||||
|
||||
End Class
|
||||
End Namespace
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"$schema": "http://json.schemastore.org/template",
|
||||
"author": "GtkSharp Contributors",
|
||||
"classifications": [
|
||||
"Gtk",
|
||||
"UI"
|
||||
],
|
||||
"name": "Gtk Widget",
|
||||
"identity": "GtkSharp.Widget.VBNet",
|
||||
"groupIdentity": "GtkSharp.Widget",
|
||||
"shortName": "gtkwidget",
|
||||
"tags": {
|
||||
"language": "VB",
|
||||
"type": "item"
|
||||
},
|
||||
"sourceName": "Gtk_Widget",
|
||||
"primaryOutputs": [
|
||||
{
|
||||
"path": "Gtk_Widget.vb"
|
||||
},
|
||||
{
|
||||
"path": "Gtk_Widget.glade"
|
||||
}
|
||||
],
|
||||
"defaultName": "Gtk_Widget",
|
||||
"symbols": {
|
||||
"namespace": {
|
||||
"description": "Namespace for the generated files",
|
||||
"replaces": "GtkNamespace",
|
||||
"type": "parameter"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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,20 @@
|
||||
Imports System
|
||||
Imports Gtk
|
||||
Imports UI = Gtk.Builder.ObjectAttribute
|
||||
|
||||
Namespace GtkNamespace
|
||||
Public Class Gtk_Widget
|
||||
Inherits Box
|
||||
|
||||
Public Sub New (builder as Builder)
|
||||
MyBase.New (builder.GetRawOwnedObject("Gtk_Widget"))
|
||||
|
||||
builder.Autoconnect (Me)
|
||||
End Sub
|
||||
|
||||
Public Sub New ()
|
||||
Me.New (new Builder("Gtk_Widget.glade"))
|
||||
End Sub
|
||||
|
||||
End Class
|
||||
End Namespace
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"$schema": "http://json.schemastore.org/template",
|
||||
"author": "GtkSharp Contributors",
|
||||
"classifications": [
|
||||
"Gtk",
|
||||
"UI"
|
||||
],
|
||||
"name": "Gtk Window",
|
||||
"identity": "GtkSharp.Window.VBNet",
|
||||
"groupIdentity": "GtkSharp.Window",
|
||||
"shortName": "gtkwindow",
|
||||
"tags": {
|
||||
"language": "VB",
|
||||
"type": "item"
|
||||
},
|
||||
"sourceName": "Gtk_Window",
|
||||
"primaryOutputs": [
|
||||
{
|
||||
"path": "Gtk_Window.vb"
|
||||
},
|
||||
{
|
||||
"path": "Gtk_Window.glade"
|
||||
}
|
||||
],
|
||||
"defaultName": "Gtk_Window",
|
||||
"symbols": {
|
||||
"namespace": {
|
||||
"description": "Namespace for the generated files",
|
||||
"replaces": "GtkNamespace",
|
||||
"type": "parameter"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<interface>
|
||||
<requires lib="gtk+" version="3.18"/>
|
||||
<object class="GtkWindow" id="Gtk_Window">
|
||||
<property name="can_focus">False</property>
|
||||
<property name="title" translatable="yes">Gtk_Window</property>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
</object>
|
||||
</interface>
|
||||
@@ -0,0 +1,20 @@
|
||||
Imports System
|
||||
Imports Gtk
|
||||
Imports UI = Gtk.Builder.ObjectAttribute
|
||||
|
||||
Namespace GtkNamespace
|
||||
Public Class Gtk_Window
|
||||
Inherits Window
|
||||
|
||||
Public Sub New (builder as Builder)
|
||||
MyBase.New (builder.GetRawOwnedObject("Gtk_Window"))
|
||||
|
||||
builder.Autoconnect (Me)
|
||||
End Sub
|
||||
|
||||
Public Sub New ()
|
||||
Me.New (new Builder ("Gtk_Window.glade"))
|
||||
End Sub
|
||||
|
||||
End Class
|
||||
End Namespace
|
||||
@@ -0,0 +1,71 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"E:\\projects\\KioskApp\\GtkSharp\\Source\\Workload\\GtkSharp.Workload.Template.VBNet\\GtkSharp.Workload.Template.VBNet.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"E:\\projects\\KioskApp\\GtkSharp\\Source\\Workload\\GtkSharp.Workload.Template.VBNet\\GtkSharp.Workload.Template.VBNet.csproj": {
|
||||
"version": "3.24.24.1",
|
||||
"restore": {
|
||||
"projectUniqueName": "E:\\projects\\KioskApp\\GtkSharp\\Source\\Workload\\GtkSharp.Workload.Template.VBNet\\GtkSharp.Workload.Template.VBNet.csproj",
|
||||
"projectName": "GtkSharp.Workload.Template.VBNet",
|
||||
"projectPath": "E:\\projects\\KioskApp\\GtkSharp\\Source\\Workload\\GtkSharp.Workload.Template.VBNet\\GtkSharp.Workload.Template.VBNet.csproj",
|
||||
"packagesPath": "C:\\Users\\Uther\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\projects\\KioskApp\\GtkSharp\\Source\\Workload\\GtkSharp.Workload.Template.VBNet\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"E:\\projects\\KioskApp\\GtkSharp\\Source\\Workload\\NuGet.Config",
|
||||
"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": [
|
||||
"netstandard2.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {},
|
||||
"https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandard2.0": {
|
||||
"targetAlias": "netstandard2.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"noWarn": [
|
||||
"NU5128"
|
||||
],
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandard2.0": {
|
||||
"targetAlias": "netstandard2.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.206\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
<?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>
|
||||
</Project>
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>GtkSharp.Workload.Template.VBNet</id>
|
||||
<version>3.24.24.1</version>
|
||||
<title>GTK templates for Visual Basic</title>
|
||||
<authors>'GtkSharp Contributors'</authors>
|
||||
<icon>Icon.png</icon>
|
||||
<projectUrl>https://github.com/GtkSharp/GtkSharp</projectUrl>
|
||||
<description>A set of Visual Basic templates for your .NET GTK Application. Installed with the GtkSharp .NET workload.</description>
|
||||
<packageTypes>
|
||||
<packageType name="Template" />
|
||||
</packageTypes>
|
||||
<repository type="git" url="https://github.com/GtkSharp/GtkSharp" commit="b7303616129ab5a0ca64def45649ab522d83fa4a" />
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="E:\projects\KioskApp\GtkSharp\Source\Libs\GtkSharp\Icon.png" target="\Icon.png" />
|
||||
<file src="E:\projects\KioskApp\GtkSharp\Source\Workload\GtkSharp.Workload.Template.VBNet\content\GtkSharp.Application.VBNet\GtkNamespace.vbproj" target="content\GtkSharp.Application.VBNet\GtkNamespace.vbproj" />
|
||||
<file src="E:\projects\KioskApp\GtkSharp\Source\Workload\GtkSharp.Workload.Template.VBNet\content\GtkSharp.Application.VBNet\MainWindow.glade" target="content\GtkSharp.Application.VBNet\MainWindow.glade" />
|
||||
<file src="E:\projects\KioskApp\GtkSharp\Source\Workload\GtkSharp.Workload.Template.VBNet\content\GtkSharp.Application.VBNet\MainWindow.vb" target="content\GtkSharp.Application.VBNet\MainWindow.vb" />
|
||||
<file src="E:\projects\KioskApp\GtkSharp\Source\Workload\GtkSharp.Workload.Template.VBNet\content\GtkSharp.Application.VBNet\Program.vb" target="content\GtkSharp.Application.VBNet\Program.vb" />
|
||||
<file src="E:\projects\KioskApp\GtkSharp\Source\Workload\GtkSharp.Workload.Template.VBNet\content\GtkSharp.Dialog.VBNet\.template.config\template.json" target="content\GtkSharp.Dialog.VBNet\.template.config\template.json" />
|
||||
<file src="E:\projects\KioskApp\GtkSharp\Source\Workload\GtkSharp.Workload.Template.VBNet\content\GtkSharp.Dialog.VBNet\Gtk_Dialog.glade" target="content\GtkSharp.Dialog.VBNet\Gtk_Dialog.glade" />
|
||||
<file src="E:\projects\KioskApp\GtkSharp\Source\Workload\GtkSharp.Workload.Template.VBNet\content\GtkSharp.Dialog.VBNet\Gtk_Dialog.vb" target="content\GtkSharp.Dialog.VBNet\Gtk_Dialog.vb" />
|
||||
<file src="E:\projects\KioskApp\GtkSharp\Source\Workload\GtkSharp.Workload.Template.VBNet\content\GtkSharp.Widget.VBNet\.template.config\template.json" target="content\GtkSharp.Widget.VBNet\.template.config\template.json" />
|
||||
<file src="E:\projects\KioskApp\GtkSharp\Source\Workload\GtkSharp.Workload.Template.VBNet\content\GtkSharp.Widget.VBNet\Gtk_Widget.glade" target="content\GtkSharp.Widget.VBNet\Gtk_Widget.glade" />
|
||||
<file src="E:\projects\KioskApp\GtkSharp\Source\Workload\GtkSharp.Workload.Template.VBNet\content\GtkSharp.Widget.VBNet\Gtk_Widget.vb" target="content\GtkSharp.Widget.VBNet\Gtk_Widget.vb" />
|
||||
<file src="E:\projects\KioskApp\GtkSharp\Source\Workload\GtkSharp.Workload.Template.VBNet\content\GtkSharp.Window.VBNet\.template.config\template.json" target="content\GtkSharp.Window.VBNet\.template.config\template.json" />
|
||||
<file src="E:\projects\KioskApp\GtkSharp\Source\Workload\GtkSharp.Workload.Template.VBNet\content\GtkSharp.Window.VBNet\Gtk_Window.glade" target="content\GtkSharp.Window.VBNet\Gtk_Window.glade" />
|
||||
<file src="E:\projects\KioskApp\GtkSharp\Source\Workload\GtkSharp.Workload.Template.VBNet\content\GtkSharp.Window.VBNet\Gtk_Window.vb" target="content\GtkSharp.Window.VBNet\Gtk_Window.vb" />
|
||||
<file src="E:\projects\KioskApp\GtkSharp\Source\Workload\GtkSharp.Workload.Template.VBNet\obj\Release\template.json" target="content\GtkSharp.Application.VBNet\.template.config\template.json" />
|
||||
</files>
|
||||
</package>
|
||||
Binary file not shown.
@@ -0,0 +1,16 @@
|
||||
E:\projects\KioskApp\GtkSharp\BuildOutput\WorkloadPacks\Release\GtkSharp.Workload.Template.VBNet\3.24.24.1\content\GtkSharp.Application.VBNet\GtkNamespace.vbproj
|
||||
E:\projects\KioskApp\GtkSharp\BuildOutput\WorkloadPacks\Release\GtkSharp.Workload.Template.VBNet\3.24.24.1\content\GtkSharp.Application.VBNet\MainWindow.glade
|
||||
E:\projects\KioskApp\GtkSharp\BuildOutput\WorkloadPacks\Release\GtkSharp.Workload.Template.VBNet\3.24.24.1\content\GtkSharp.Application.VBNet\MainWindow.vb
|
||||
E:\projects\KioskApp\GtkSharp\BuildOutput\WorkloadPacks\Release\GtkSharp.Workload.Template.VBNet\3.24.24.1\content\GtkSharp.Application.VBNet\Program.vb
|
||||
E:\projects\KioskApp\GtkSharp\BuildOutput\WorkloadPacks\Release\GtkSharp.Workload.Template.VBNet\3.24.24.1\content\GtkSharp.Dialog.VBNet\.template.config\template.json
|
||||
E:\projects\KioskApp\GtkSharp\BuildOutput\WorkloadPacks\Release\GtkSharp.Workload.Template.VBNet\3.24.24.1\content\GtkSharp.Dialog.VBNet\Gtk_Dialog.glade
|
||||
E:\projects\KioskApp\GtkSharp\BuildOutput\WorkloadPacks\Release\GtkSharp.Workload.Template.VBNet\3.24.24.1\content\GtkSharp.Dialog.VBNet\Gtk_Dialog.vb
|
||||
E:\projects\KioskApp\GtkSharp\BuildOutput\WorkloadPacks\Release\GtkSharp.Workload.Template.VBNet\3.24.24.1\content\GtkSharp.Widget.VBNet\.template.config\template.json
|
||||
E:\projects\KioskApp\GtkSharp\BuildOutput\WorkloadPacks\Release\GtkSharp.Workload.Template.VBNet\3.24.24.1\content\GtkSharp.Widget.VBNet\Gtk_Widget.glade
|
||||
E:\projects\KioskApp\GtkSharp\BuildOutput\WorkloadPacks\Release\GtkSharp.Workload.Template.VBNet\3.24.24.1\content\GtkSharp.Widget.VBNet\Gtk_Widget.vb
|
||||
E:\projects\KioskApp\GtkSharp\BuildOutput\WorkloadPacks\Release\GtkSharp.Workload.Template.VBNet\3.24.24.1\content\GtkSharp.Window.VBNet\.template.config\template.json
|
||||
E:\projects\KioskApp\GtkSharp\BuildOutput\WorkloadPacks\Release\GtkSharp.Workload.Template.VBNet\3.24.24.1\content\GtkSharp.Window.VBNet\Gtk_Window.glade
|
||||
E:\projects\KioskApp\GtkSharp\BuildOutput\WorkloadPacks\Release\GtkSharp.Workload.Template.VBNet\3.24.24.1\content\GtkSharp.Window.VBNet\Gtk_Window.vb
|
||||
E:\projects\KioskApp\GtkSharp\BuildOutput\WorkloadPacks\Release\GtkSharp.Workload.Template.VBNet\3.24.24.1\content\GtkSharp.Application.VBNet\.template.config\template.json
|
||||
E:\projects\KioskApp\GtkSharp\Source\Workload\GtkSharp.Workload.Template.VBNet\obj\Release\GtkSharp.Workload.Template.VBNet.sourcelink.json
|
||||
E:\projects\KioskApp\GtkSharp\Source\Workload\GtkSharp.Workload.Template.VBNet\obj\Release\template.json
|
||||
@@ -0,0 +1 @@
|
||||
{"documents":{"E:\\projects\\KioskApp\\GtkSharp\\*":"https://raw.githubusercontent.com/GtkSharp/GtkSharp/b7303616129ab5a0ca64def45649ab522d83fa4a/*"}}
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"$schema": "http://json.schemastore.org/template",
|
||||
"author": "GtkSharp Contributors",
|
||||
"classifications": [
|
||||
"Gtk",
|
||||
"GUI App"
|
||||
],
|
||||
"name": "Gtk Application",
|
||||
"identity": "GtkSharp.Application.VBNet",
|
||||
"groupIdentity": "GtkSharp.Application",
|
||||
"shortName": "gtk",
|
||||
"tags": {
|
||||
"language": "VB",
|
||||
"type": "project"
|
||||
},
|
||||
"sourceName": "GtkNamespace",
|
||||
"preferNameDirectory": true,
|
||||
"symbols": {
|
||||
"targetframework": {
|
||||
"type": "parameter",
|
||||
"description": "The target framework for the project.",
|
||||
"defaultValue": "net8.0-gtk",
|
||||
"replaces": "$(FrameworkParameter)"
|
||||
}
|
||||
},
|
||||
"primaryOutputs": [
|
||||
{ "path": "GtkNamespace.vbproj" }
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
".NETStandard,Version=v2.0": {}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
".NETStandard,Version=v2.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\Uther\\.nuget\\packages\\": {},
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "3.24.24.1",
|
||||
"restore": {
|
||||
"projectUniqueName": "E:\\projects\\KioskApp\\GtkSharp\\Source\\Workload\\GtkSharp.Workload.Template.VBNet\\GtkSharp.Workload.Template.VBNet.csproj",
|
||||
"projectName": "GtkSharp.Workload.Template.VBNet",
|
||||
"projectPath": "E:\\projects\\KioskApp\\GtkSharp\\Source\\Workload\\GtkSharp.Workload.Template.VBNet\\GtkSharp.Workload.Template.VBNet.csproj",
|
||||
"packagesPath": "C:\\Users\\Uther\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\projects\\KioskApp\\GtkSharp\\Source\\Workload\\GtkSharp.Workload.Template.VBNet\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"E:\\projects\\KioskApp\\GtkSharp\\Source\\Workload\\NuGet.Config",
|
||||
"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": [
|
||||
"netstandard2.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {},
|
||||
"https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandard2.0": {
|
||||
"targetAlias": "netstandard2.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"noWarn": [
|
||||
"NU5128"
|
||||
],
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandard2.0": {
|
||||
"targetAlias": "netstandard2.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.206\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "ET8h/RGcvYrgBxUnUAF0zKW9ePBf/k18zaAS2iz26kzf/5opmmv6ENSNDlPKF68pViUxcr+oIEylwvHpgbXsgA==",
|
||||
"success": true,
|
||||
"projectFilePath": "E:\\projects\\KioskApp\\GtkSharp\\Source\\Workload\\GtkSharp.Workload.Template.VBNet\\GtkSharp.Workload.Template.VBNet.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
||||
Reference in New Issue
Block a user