-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Aggiunto file AUTHORS.md e allineamento progetto
- Loading branch information
1 parent
471fafe
commit e4b5d16
Showing
26 changed files
with
300 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net472</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="*.msi" /> | ||
<None Remove="*.exe" /> | ||
<None Remove="*.wxs" /> | ||
<None Remove="*.wixpdb" /> | ||
<None Remove="*.wixobj" /> | ||
<None Remove="CustomAction.config" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="WixSharp-wix4" Version="2.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Reference Include="System.Windows.Forms" /> | ||
</ItemGroup> | ||
|
||
<Target Name="PostBuild" AfterTargets="PostBuildEvent"> | ||
<Exec Command="cd .\
set ide=true
"$(TargetPath)"" /> | ||
</Target> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
using System; | ||
using WixSharp; | ||
using WixSharp.Bootstrapper; | ||
|
||
namespace Installer | ||
{ | ||
internal class Program | ||
{ | ||
static void Main() | ||
{ | ||
string productMsi = BuildMsi(); | ||
|
||
var bootstrapper = | ||
new Bundle("MyProduct", | ||
new PackageGroupRef("NetFx462Web"), | ||
new MsiPackage(productMsi) { DisplayInternalUI = true }); | ||
|
||
bootstrapper.Version = new Version("1.0.0.0"); | ||
bootstrapper.UpgradeCode = new Guid("6f330b47-2577-43ad-9095-1861bb25844b"); | ||
// bootstrapper.Application = new SilentBootstrapperApplication(); | ||
// bootstrapper.PreserveTempFiles = true; | ||
|
||
bootstrapper.Build("MyProduct.exe"); | ||
} | ||
|
||
static string BuildMsi() | ||
{ | ||
var project = new Project("MyProduct", | ||
new Dir(@"%ProgramFiles%\My Company\My Product", | ||
new File("Program.cs"))); | ||
|
||
project.GUID = new Guid("6fe30b47-2577-43ad-9095-1861ba25889b"); | ||
//project.SourceBaseDir = "<input dir path>"; | ||
//project.OutDir = "<output dir path>"; | ||
|
||
return project.BuildMsi(); | ||
} | ||
} | ||
} |
4 changes: 4 additions & 0 deletions
4
Installer/obj/Debug/net472/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// <autogenerated /> | ||
using System; | ||
using System.Reflection; | ||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
//------------------------------------------------------------------------------ | ||
// <auto-generated> | ||
// Il codice è stato generato da uno strumento. | ||
// Versione runtime:4.0.30319.42000 | ||
// | ||
// Le modifiche apportate a questo file possono provocare un comportamento non corretto e andranno perse se | ||
// il codice viene rigenerato. | ||
// </auto-generated> | ||
//------------------------------------------------------------------------------ | ||
|
||
using System; | ||
using System.Reflection; | ||
|
||
[assembly: System.Reflection.AssemblyCompanyAttribute("Installer")] | ||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] | ||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] | ||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] | ||
[assembly: System.Reflection.AssemblyProductAttribute("Installer")] | ||
[assembly: System.Reflection.AssemblyTitleAttribute("Installer")] | ||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | ||
|
||
// Generato dalla classe WriteCodeFragment di MSBuild. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
44531b85995178aea1e039c922fb705f3d5196c8 |
3 changes: 3 additions & 0 deletions
3
Installer/obj/Debug/net472/Installer.GeneratedMSBuildEditorConfig.editorconfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
is_global = true | ||
build_property.RootNamespace = Installer | ||
build_property.ProjectDir = C:\Users\Giacomo\source\repos\accorda.net\Installer\ |
Binary file not shown.
Binary file not shown.
Empty file.
6 changes: 6 additions & 0 deletions
6
Installer/obj/Debug/net472/Installer.exe.withSupportedRuntime.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" /> | ||
</startup> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
"format": 1, | ||
"restore": { | ||
"C:\\Users\\Giacomo\\source\\repos\\accorda.net\\Installer\\Installer.csproj": {} | ||
}, | ||
"projects": { | ||
"C:\\Users\\Giacomo\\source\\repos\\accorda.net\\Installer\\Installer.csproj": { | ||
"version": "1.0.0", | ||
"restore": { | ||
"projectUniqueName": "C:\\Users\\Giacomo\\source\\repos\\accorda.net\\Installer\\Installer.csproj", | ||
"projectName": "Installer", | ||
"projectPath": "C:\\Users\\Giacomo\\source\\repos\\accorda.net\\Installer\\Installer.csproj", | ||
"packagesPath": "C:\\Users\\Giacomo\\.nuget\\packages\\", | ||
"outputPath": "C:\\Users\\Giacomo\\source\\repos\\accorda.net\\Installer\\obj\\", | ||
"projectStyle": "PackageReference", | ||
"fallbackFolders": [ | ||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" | ||
], | ||
"configFilePaths": [ | ||
"C:\\Users\\Giacomo\\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": [ | ||
"net472" | ||
], | ||
"sources": { | ||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, | ||
"C:\\Program Files\\dotnet\\library-packs": {}, | ||
"https://api.nuget.org/v3/index.json": {} | ||
}, | ||
"frameworks": { | ||
"net472": { | ||
"targetAlias": "net472", | ||
"projectReferences": {} | ||
} | ||
}, | ||
"warningProperties": { | ||
"warnAsError": [ | ||
"NU1605" | ||
] | ||
} | ||
}, | ||
"frameworks": { | ||
"net472": { | ||
"targetAlias": "net472", | ||
"dependencies": { | ||
"WixSharp-wix4": { | ||
"target": "Package", | ||
"version": "[2.0.0, )" | ||
} | ||
}, | ||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.400\\RuntimeIdentifierGraph.json" | ||
} | ||
}, | ||
"runtimes": { | ||
"win7-x86": { | ||
"#import": [] | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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)' == '' ">False</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\Giacomo\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders> | ||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> | ||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion> | ||
</PropertyGroup> | ||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | ||
<SourceRoot Include="C:\Users\Giacomo\.nuget\packages\" /> | ||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
{ | ||
"version": 3, | ||
"targets": { | ||
".NETFramework,Version=v4.7.2": {}, | ||
".NETFramework,Version=v4.7.2/win7-x86": {} | ||
}, | ||
"libraries": {}, | ||
"projectFileDependencyGroups": { | ||
".NETFramework,Version=v4.7.2": [ | ||
"WixSharp-wix4 >= 2.0.0" | ||
] | ||
}, | ||
"packageFolders": { | ||
"C:\\Users\\Giacomo\\.nuget\\packages\\": {}, | ||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} | ||
}, | ||
"project": { | ||
"version": "1.0.0", | ||
"restore": { | ||
"projectUniqueName": "C:\\Users\\Giacomo\\source\\repos\\accorda.net\\Installer\\Installer.csproj", | ||
"projectName": "Installer", | ||
"projectPath": "C:\\Users\\Giacomo\\source\\repos\\accorda.net\\Installer\\Installer.csproj", | ||
"packagesPath": "C:\\Users\\Giacomo\\.nuget\\packages\\", | ||
"outputPath": "C:\\Users\\Giacomo\\source\\repos\\accorda.net\\Installer\\obj\\", | ||
"projectStyle": "PackageReference", | ||
"fallbackFolders": [ | ||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" | ||
], | ||
"configFilePaths": [ | ||
"C:\\Users\\Giacomo\\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": [ | ||
"net472" | ||
], | ||
"sources": { | ||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, | ||
"C:\\Program Files\\dotnet\\library-packs": {}, | ||
"https://api.nuget.org/v3/index.json": {} | ||
}, | ||
"frameworks": { | ||
"net472": { | ||
"targetAlias": "net472", | ||
"projectReferences": {} | ||
} | ||
}, | ||
"warningProperties": { | ||
"warnAsError": [ | ||
"NU1605" | ||
] | ||
} | ||
}, | ||
"frameworks": { | ||
"net472": { | ||
"targetAlias": "net472", | ||
"dependencies": { | ||
"WixSharp-wix4": { | ||
"target": "Package", | ||
"version": "[2.0.0, )" | ||
} | ||
}, | ||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.400\\RuntimeIdentifierGraph.json" | ||
} | ||
}, | ||
"runtimes": { | ||
"win7-x86": { | ||
"#import": [] | ||
} | ||
} | ||
}, | ||
"logs": [ | ||
{ | ||
"code": "NU1101", | ||
"level": "Error", | ||
"message": "Il pacchetto WixSharp-wix4 non è stato trovato. Non esistono pacchetti con questo ID nelle origini: C:\\Program Files\\dotnet\\library-packs, Microsoft Visual Studio Offline Packages, nuget", | ||
"libraryId": "WixSharp-wix4", | ||
"targetGraphs": [ | ||
".NETFramework,Version=v4.7.2", | ||
".NETFramework,Version=v4.7.2/win7-x86" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"version": 2, | ||
"dgSpecHash": "q8FqQfgtq3wcID+VyfbvN7zDX3kLgl4Ni0BwPbFMEpD3d2Up7E5DNomKyfafgoOXduTqn42cvRlxU5ugwpQJpQ==", | ||
"success": false, | ||
"projectFilePath": "C:\\Users\\Giacomo\\source\\repos\\accorda.net\\Installer\\Installer.csproj", | ||
"expectedPackageFiles": [], | ||
"logs": [ | ||
{ | ||
"code": "NU1101", | ||
"level": "Error", | ||
"message": "Il pacchetto WixSharp-wix4 non è stato trovato. Non esistono pacchetti con questo ID nelle origini: C:\\Program Files\\dotnet\\library-packs, Microsoft Visual Studio Offline Packages, nuget", | ||
"libraryId": "WixSharp-wix4", | ||
"targetGraphs": [ | ||
".NETFramework,Version=v4.7.2", | ||
".NETFramework,Version=v4.7.2/win7-x86" | ||
] | ||
} | ||
] | ||
} |
Binary file not shown.
Binary file removed
BIN
-21.9 KB
accorda.net/.vs/accorda.net/FileContentIndex/657ee4cf-1b0c-4baf-94b8-1cacef5bf404.vsidx
Binary file not shown.
Binary file added
BIN
+32.5 KB
accorda.net/.vs/accorda.net/FileContentIndex/8d08e9e3-9349-4102-abd4-146fb6215548.vsidx
Binary file not shown.
Binary file removed
BIN
-17.3 KB
accorda.net/.vs/accorda.net/FileContentIndex/a444f09f-ba46-4123-a031-199fb5c7ccf7.vsidx
Binary file not shown.
Binary file added
BIN
+9.73 KB
accorda.net/.vs/accorda.net/FileContentIndex/f19d1154-be39-4b3c-83f3-c115e839bd10.vsidx
Binary file not shown.
Binary file not shown.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"version": "0.2", | ||
"ignorePaths": [], | ||
"dictionaryDefinitions": [], | ||
"dictionaries": [], | ||
"words": [], | ||
"ignoreWords": [], | ||
"import": [] | ||
} |