Commit 9b7a9a1f authored by Manuel Campana's avatar Manuel Campana
Browse files

Finire

parents
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+95 −0
Original line number Diff line number Diff line
## Visual Studio
.vs/
.vscode/
*.user
*.suo
*.userosscache
*.sln.docstates

## Build results
[Bb]in/
[Oo]bj/
[Ll]og/
*.log

## NuGet
*.nupkg
*.snupkg
**/packages/*
!**/packages/build/
!**/packages/repositories.config
*.nuget.props
*.nuget.targets

# NuGet v3 folders
**/.nuget/packages/

## ASP.NET
project.lock.json
project.fragment.lock.json
artifacts/

## Resharper
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user

## Rider
.idea/

## Windows image file caches
Thumbs.db
ehthumbs.db

## Folder config file
Desktop.ini

## VS Code
.history/

## TFS
$tf/

## Others
*.dbmdl
*.bak
*.sql
*.pdb
*.cache
*.class
*.tmp

# Entity Framework Migrations
Migrations/

# Test results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*

# JetBrains Rider
.idea/

# Local environment settings
.env
.env.*

# IIS Express
.vsconfig
*.iis*

# dotCover
*.dotCover

# StyleCop
StyleCopReport.xml

# Uncomment if using VS for Mac
# .userprefs

# Uncomment if using Docker
# .dockerignore
# docker-compose*

# Uncomment if using Azure DevOps Pipelines
# azure-pipelines.yml
 No newline at end of file
+25 −0
Original line number Diff line number Diff line

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.14.36212.18 d17.14
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProgrammazioneAsincrona", "ProgrammazioneAsincrona\ProgrammazioneAsincrona.csproj", "{7A4422F3-624B-4A5A-8332-A04BC0A82BFD}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{7A4422F3-624B-4A5A-8332-A04BC0A82BFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{7A4422F3-624B-4A5A-8332-A04BC0A82BFD}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{7A4422F3-624B-4A5A-8332-A04BC0A82BFD}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{7A4422F3-624B-4A5A-8332-A04BC0A82BFD}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
	GlobalSection(ExtensibilityGlobals) = postSolution
		SolutionGuid = {3A842D7E-7136-4D75-A88E-16DD474A8607}
	EndGlobalSection
EndGlobal
+9 −0
Original line number Diff line number Diff line
<Application x:Class="ProgrammazioneAsincrona.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:local="clr-namespace:ProgrammazioneAsincrona"
             StartupUri="MainWindow.xaml">
    <Application.Resources>
         
    </Application.Resources>
</Application>
+14 −0
Original line number Diff line number Diff line
using System.Configuration;
using System.Data;
using System.Windows;

namespace ProgrammazioneAsincrona
{
    /// <summary>
    /// Interaction logic for App.xaml
    /// </summary>
    public partial class App : Application
    {
    }

}
+10 −0
Original line number Diff line number Diff line
using System.Windows;

[assembly: ThemeInfo(
    ResourceDictionaryLocation.None,            //where theme specific resource dictionaries are located
                                                //(used if a resource is not found in the page,
                                                // or application resource dictionaries)
    ResourceDictionaryLocation.SourceAssembly   //where the generic resource dictionary is located
                                                //(used if a resource is not found in the page,
                                                // app, or any theme specific resource dictionaries)
)]