Inital Commit of MAUI Version
This commit is contained in:
parent
ff06e51837
commit
2d373ae945
|
|
@ -1,12 +1,14 @@
|
||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio Version 16
|
# Visual Studio Version 17
|
||||||
VisualStudioVersion = 16.0.29709.97
|
VisualStudioVersion = 17.3.32825.248
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MFACodeGenerator", "MFACodeGenerator\MFACodeGenerator.csproj", "{8C1E3884-2C2E-443D-B658-1613A10EB6A5}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MFACodeGenerator", "MFACodeGenerator\MFACodeGenerator.csproj", "{8C1E3884-2C2E-443D-B658-1613A10EB6A5}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "MFASetup", "MFASetup\MFASetup.vdproj", "{67CD3671-FAB0-4124-8C50-0756E7E35D3E}"
|
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "MFASetup", "MFASetup\MFASetup.vdproj", "{67CD3671-FAB0-4124-8C50-0756E7E35D3E}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MFACodeGenerator.MAUI", "MFACodeGenerator.MAUI\MFACodeGenerator.MAUI.csproj", "{40F6FD20-9870-45B7-BC7F-62A17D16BF61}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
|
@ -19,6 +21,12 @@ Global
|
||||||
{8C1E3884-2C2E-443D-B658-1613A10EB6A5}.Release|Any CPU.Build.0 = Release|Any CPU
|
{8C1E3884-2C2E-443D-B658-1613A10EB6A5}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
{67CD3671-FAB0-4124-8C50-0756E7E35D3E}.Debug|Any CPU.ActiveCfg = Debug
|
{67CD3671-FAB0-4124-8C50-0756E7E35D3E}.Debug|Any CPU.ActiveCfg = Debug
|
||||||
{67CD3671-FAB0-4124-8C50-0756E7E35D3E}.Release|Any CPU.ActiveCfg = Release
|
{67CD3671-FAB0-4124-8C50-0756E7E35D3E}.Release|Any CPU.ActiveCfg = Release
|
||||||
|
{40F6FD20-9870-45B7-BC7F-62A17D16BF61}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{40F6FD20-9870-45B7-BC7F-62A17D16BF61}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{40F6FD20-9870-45B7-BC7F-62A17D16BF61}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
|
||||||
|
{40F6FD20-9870-45B7-BC7F-62A17D16BF61}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{40F6FD20-9870-45B7-BC7F-62A17D16BF61}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{40F6FD20-9870-45B7-BC7F-62A17D16BF61}.Release|Any CPU.Deploy.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<configuration>
|
<configuration>
|
||||||
<startup>
|
<startup>
|
||||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
|
||||||
</startup>
|
</startup>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
<OutputType>WinExe</OutputType>
|
<OutputType>WinExe</OutputType>
|
||||||
<RootNamespace>MFACodeGenerator</RootNamespace>
|
<RootNamespace>MFACodeGenerator</RootNamespace>
|
||||||
<AssemblyName>MFACodeGenerator</AssemblyName>
|
<AssemblyName>MFACodeGenerator</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||||
<Deterministic>true</Deterministic>
|
<Deterministic>true</Deterministic>
|
||||||
|
|
@ -38,7 +38,8 @@
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>0</WarningLevel>
|
||||||
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
|
@ -50,7 +51,7 @@
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ManifestCertificateThumbprint>25959F1C21FCA9FFDED624C1BC14F6D1248B0FDD</ManifestCertificateThumbprint>
|
<ManifestCertificateThumbprint>2E1111A4FD53711C312630B995C08CA96D2A21DF</ManifestCertificateThumbprint>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ManifestKeyFile>MFACodeGenerator_TemporaryKey.pfx</ManifestKeyFile>
|
<ManifestKeyFile>MFACodeGenerator_TemporaryKey.pfx</ManifestKeyFile>
|
||||||
|
|
@ -100,6 +101,7 @@
|
||||||
<Compile Include="Properties\Resources.Designer.cs">
|
<Compile Include="Properties\Resources.Designer.cs">
|
||||||
<AutoGen>True</AutoGen>
|
<AutoGen>True</AutoGen>
|
||||||
<DependentUpon>Resources.resx</DependentUpon>
|
<DependentUpon>Resources.resx</DependentUpon>
|
||||||
|
<DesignTime>True</DesignTime>
|
||||||
</Compile>
|
</Compile>
|
||||||
<None Include="MFACodeGenerator_TemporaryKey.pfx" />
|
<None Include="MFACodeGenerator_TemporaryKey.pfx" />
|
||||||
<None Include="packages.config" />
|
<None Include="packages.config" />
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ namespace MFACodeGenerator.Properties {
|
||||||
// class via a tool like ResGen or Visual Studio.
|
// class via a tool like ResGen or Visual Studio.
|
||||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||||
// with the /str option, or rebuild your VS project.
|
// with the /str option, or rebuild your VS project.
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
internal class Resources {
|
internal class Resources {
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ namespace MFACodeGenerator.Properties {
|
||||||
|
|
||||||
|
|
||||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.4.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.1.0.0")]
|
||||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
||||||
|
|
||||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||||
|
|
|
||||||
|
|
@ -21,44 +21,44 @@
|
||||||
}
|
}
|
||||||
"Entry"
|
"Entry"
|
||||||
{
|
{
|
||||||
"MsmKey" = "8:_7289385591163C37224C52B307236548"
|
"MsmKey" = "8:_3ED698188BC9FE0300C852FA5B313D96"
|
||||||
"OwnerKey" = "8:_3448545F8BC8403F8AC835455C6F131C"
|
"OwnerKey" = "8:_3448545F8BC8403F8AC835455C6F131C"
|
||||||
"MsmSig" = "8:_UNDEFINED"
|
"MsmSig" = "8:_UNDEFINED"
|
||||||
}
|
}
|
||||||
"Entry"
|
"Entry"
|
||||||
{
|
{
|
||||||
"MsmKey" = "8:_A4844841241A7971AE8BEC535C0E488C"
|
"MsmKey" = "8:_91CA8CFFA8E9FF58209B89C530311B3F"
|
||||||
"OwnerKey" = "8:_3448545F8BC8403F8AC835455C6F131C"
|
"OwnerKey" = "8:_3448545F8BC8403F8AC835455C6F131C"
|
||||||
"MsmSig" = "8:_UNDEFINED"
|
"MsmSig" = "8:_UNDEFINED"
|
||||||
}
|
}
|
||||||
"Entry"
|
"Entry"
|
||||||
{
|
{
|
||||||
"MsmKey" = "8:_F9DC3B7188913C7D9C455F9E96F82BB6"
|
"MsmKey" = "8:_93F203079AD02B47285EED17F29DE6F3"
|
||||||
"OwnerKey" = "8:_3448545F8BC8403F8AC835455C6F131C"
|
"OwnerKey" = "8:_3448545F8BC8403F8AC835455C6F131C"
|
||||||
"MsmSig" = "8:_UNDEFINED"
|
"MsmSig" = "8:_UNDEFINED"
|
||||||
}
|
}
|
||||||
"Entry"
|
"Entry"
|
||||||
{
|
{
|
||||||
"MsmKey" = "8:_UNDEFINED"
|
"MsmKey" = "8:_UNDEFINED"
|
||||||
"OwnerKey" = "8:_F9DC3B7188913C7D9C455F9E96F82BB6"
|
|
||||||
"MsmSig" = "8:_UNDEFINED"
|
|
||||||
}
|
|
||||||
"Entry"
|
|
||||||
{
|
|
||||||
"MsmKey" = "8:_UNDEFINED"
|
|
||||||
"OwnerKey" = "8:_3448545F8BC8403F8AC835455C6F131C"
|
"OwnerKey" = "8:_3448545F8BC8403F8AC835455C6F131C"
|
||||||
"MsmSig" = "8:_UNDEFINED"
|
"MsmSig" = "8:_UNDEFINED"
|
||||||
}
|
}
|
||||||
"Entry"
|
"Entry"
|
||||||
{
|
{
|
||||||
"MsmKey" = "8:_UNDEFINED"
|
"MsmKey" = "8:_UNDEFINED"
|
||||||
"OwnerKey" = "8:_A4844841241A7971AE8BEC535C0E488C"
|
"OwnerKey" = "8:_91CA8CFFA8E9FF58209B89C530311B3F"
|
||||||
"MsmSig" = "8:_UNDEFINED"
|
"MsmSig" = "8:_UNDEFINED"
|
||||||
}
|
}
|
||||||
"Entry"
|
"Entry"
|
||||||
{
|
{
|
||||||
"MsmKey" = "8:_UNDEFINED"
|
"MsmKey" = "8:_UNDEFINED"
|
||||||
"OwnerKey" = "8:_7289385591163C37224C52B307236548"
|
"OwnerKey" = "8:_3ED698188BC9FE0300C852FA5B313D96"
|
||||||
|
"MsmSig" = "8:_UNDEFINED"
|
||||||
|
}
|
||||||
|
"Entry"
|
||||||
|
{
|
||||||
|
"MsmKey" = "8:_UNDEFINED"
|
||||||
|
"OwnerKey" = "8:_93F203079AD02B47285EED17F29DE6F3"
|
||||||
"MsmSig" = "8:_UNDEFINED"
|
"MsmSig" = "8:_UNDEFINED"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -79,6 +79,14 @@
|
||||||
"PrivateKeyFile" = "8:"
|
"PrivateKeyFile" = "8:"
|
||||||
"TimeStampServer" = "8:"
|
"TimeStampServer" = "8:"
|
||||||
"InstallerBootstrapper" = "3:2"
|
"InstallerBootstrapper" = "3:2"
|
||||||
|
"BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}"
|
||||||
|
{
|
||||||
|
"Enabled" = "11:TRUE"
|
||||||
|
"PromptEnabled" = "11:TRUE"
|
||||||
|
"PrerequisitesLocation" = "2:1"
|
||||||
|
"Url" = "8:"
|
||||||
|
"ComponentsUrl" = "8:"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
"Release"
|
"Release"
|
||||||
{
|
{
|
||||||
|
|
@ -95,6 +103,22 @@
|
||||||
"PrivateKeyFile" = "8:"
|
"PrivateKeyFile" = "8:"
|
||||||
"TimeStampServer" = "8:"
|
"TimeStampServer" = "8:"
|
||||||
"InstallerBootstrapper" = "3:2"
|
"InstallerBootstrapper" = "3:2"
|
||||||
|
"BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}"
|
||||||
|
{
|
||||||
|
"Enabled" = "11:TRUE"
|
||||||
|
"PromptEnabled" = "11:TRUE"
|
||||||
|
"PrerequisitesLocation" = "2:1"
|
||||||
|
"Url" = "8:"
|
||||||
|
"ComponentsUrl" = "8:"
|
||||||
|
"Items"
|
||||||
|
{
|
||||||
|
"{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.8"
|
||||||
|
{
|
||||||
|
"Name" = "8:Microsoft .NET Framework 4.8 (x86 and x64)"
|
||||||
|
"ProductCode" = "8:.NETFramework,Version=v4.8"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"Deployable"
|
"Deployable"
|
||||||
|
|
@ -116,7 +140,7 @@
|
||||||
{
|
{
|
||||||
"Name" = "8:.NET Framework"
|
"Name" = "8:.NET Framework"
|
||||||
"Message" = "8:[VSDNETMSG]"
|
"Message" = "8:[VSDNETMSG]"
|
||||||
"FrameworkVersion" = "8:.NETFramework,Version=v4.5"
|
"FrameworkVersion" = "8:.NETFramework,Version=v4.8"
|
||||||
"AllowLaterVersions" = "11:FALSE"
|
"AllowLaterVersions" = "11:FALSE"
|
||||||
"InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=863262"
|
"InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=863262"
|
||||||
}
|
}
|
||||||
|
|
@ -124,14 +148,14 @@
|
||||||
}
|
}
|
||||||
"File"
|
"File"
|
||||||
{
|
{
|
||||||
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7289385591163C37224C52B307236548"
|
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3ED698188BC9FE0300C852FA5B313D96"
|
||||||
{
|
{
|
||||||
"AssemblyRegister" = "3:1"
|
"AssemblyRegister" = "3:1"
|
||||||
"AssemblyIsInGAC" = "11:FALSE"
|
"AssemblyIsInGAC" = "11:FALSE"
|
||||||
"AssemblyAsmDisplayName" = "8:NtpClient, Version=1.0.14.0, Culture=neutral, processorArchitecture=MSIL"
|
"AssemblyAsmDisplayName" = "8:NtpClient, Version=1.0.14.0, Culture=neutral, processorArchitecture=MSIL"
|
||||||
"ScatterAssemblies"
|
"ScatterAssemblies"
|
||||||
{
|
{
|
||||||
"_7289385591163C37224C52B307236548"
|
"_3ED698188BC9FE0300C852FA5B313D96"
|
||||||
{
|
{
|
||||||
"Name" = "8:NtpClient.dll"
|
"Name" = "8:NtpClient.dll"
|
||||||
"Attributes" = "3:512"
|
"Attributes" = "3:512"
|
||||||
|
|
@ -155,14 +179,14 @@
|
||||||
"IsDependency" = "11:TRUE"
|
"IsDependency" = "11:TRUE"
|
||||||
"IsolateTo" = "8:"
|
"IsolateTo" = "8:"
|
||||||
}
|
}
|
||||||
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A4844841241A7971AE8BEC535C0E488C"
|
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_91CA8CFFA8E9FF58209B89C530311B3F"
|
||||||
{
|
{
|
||||||
"AssemblyRegister" = "3:1"
|
"AssemblyRegister" = "3:1"
|
||||||
"AssemblyIsInGAC" = "11:FALSE"
|
"AssemblyIsInGAC" = "11:FALSE"
|
||||||
"AssemblyAsmDisplayName" = "8:Otp.NET, Version=1.2.2.0, Culture=neutral, PublicKeyToken=38a48df817e173a6, processorArchitecture=MSIL"
|
"AssemblyAsmDisplayName" = "8:Otp.NET, Version=1.2.2.0, Culture=neutral, PublicKeyToken=38a48df817e173a6, processorArchitecture=MSIL"
|
||||||
"ScatterAssemblies"
|
"ScatterAssemblies"
|
||||||
{
|
{
|
||||||
"_A4844841241A7971AE8BEC535C0E488C"
|
"_91CA8CFFA8E9FF58209B89C530311B3F"
|
||||||
{
|
{
|
||||||
"Name" = "8:Otp.NET.dll"
|
"Name" = "8:Otp.NET.dll"
|
||||||
"Attributes" = "3:512"
|
"Attributes" = "3:512"
|
||||||
|
|
@ -186,14 +210,14 @@
|
||||||
"IsDependency" = "11:TRUE"
|
"IsDependency" = "11:TRUE"
|
||||||
"IsolateTo" = "8:"
|
"IsolateTo" = "8:"
|
||||||
}
|
}
|
||||||
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F9DC3B7188913C7D9C455F9E96F82BB6"
|
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_93F203079AD02B47285EED17F29DE6F3"
|
||||||
{
|
{
|
||||||
"AssemblyRegister" = "3:1"
|
"AssemblyRegister" = "3:1"
|
||||||
"AssemblyIsInGAC" = "11:FALSE"
|
"AssemblyIsInGAC" = "11:FALSE"
|
||||||
"AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
|
"AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
|
||||||
"ScatterAssemblies"
|
"ScatterAssemblies"
|
||||||
{
|
{
|
||||||
"_F9DC3B7188913C7D9C455F9E96F82BB6"
|
"_93F203079AD02B47285EED17F29DE6F3"
|
||||||
{
|
{
|
||||||
"Name" = "8:System.Net.Http.dll"
|
"Name" = "8:System.Net.Http.dll"
|
||||||
"Attributes" = "3:512"
|
"Attributes" = "3:512"
|
||||||
|
|
@ -285,7 +309,7 @@
|
||||||
"Name" = "8:Microsoft Visual Studio"
|
"Name" = "8:Microsoft Visual Studio"
|
||||||
"ProductName" = "8:MFA Code Generator"
|
"ProductName" = "8:MFA Code Generator"
|
||||||
"ProductCode" = "8:{3FEA1002-739E-4B04-838F-51A39CFB0E96}"
|
"ProductCode" = "8:{3FEA1002-739E-4B04-838F-51A39CFB0E96}"
|
||||||
"PackageCode" = "8:{8B281215-4544-421F-BBF2-AA8C1FF9B4C8}"
|
"PackageCode" = "8:{6896515C-FECC-4650-991C-ACA979CF94E9}"
|
||||||
"UpgradeCode" = "8:{06AB1818-13F2-4C10-9B75-1DCE76562A8F}"
|
"UpgradeCode" = "8:{06AB1818-13F2-4C10-9B75-1DCE76562A8F}"
|
||||||
"AspNetVersion" = "8:4.0.30319.0"
|
"AspNetVersion" = "8:4.0.30319.0"
|
||||||
"RestartWWWService" = "11:FALSE"
|
"RestartWWWService" = "11:FALSE"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue