diff --git a/data/resources/StringResources.resx b/data/resources/StringResources.resx index 49d65c8075..aec01bc5d2 100644 --- a/data/resources/StringResources.resx +++ b/data/resources/StringResources.resx @@ -8377,4 +8377,7 @@ Press Esc to cancel this operation. Press "Alt" to enter Container + + Assembly Info + \ No newline at end of file diff --git a/src/AddIns/BackendBindings/CSharpBinding/Project/CSharpBinding.addin b/src/AddIns/BackendBindings/CSharpBinding/Project/CSharpBinding.addin index 785b7fcd74..068fd3bf6b 100644 --- a/src/AddIns/BackendBindings/CSharpBinding/Project/CSharpBinding.addin +++ b/src/AddIns/BackendBindings/CSharpBinding/Project/CSharpBinding.addin @@ -115,6 +115,9 @@ + diff --git a/src/Main/Base/Project/ICSharpCode.SharpDevelop.csproj b/src/Main/Base/Project/ICSharpCode.SharpDevelop.csproj index f566fed43b..b16be13ad3 100644 --- a/src/Main/Base/Project/ICSharpCode.SharpDevelop.csproj +++ b/src/Main/Base/Project/ICSharpCode.SharpDevelop.csproj @@ -275,7 +275,9 @@ Code - + + UserControl + StringListEditorDialog.xaml @@ -284,11 +286,15 @@ Code - + + Form + AsynchronousWaitDialog.cs - + + Form + AbstractAttachToProcessForm.cs @@ -297,6 +303,9 @@ OutputWindowOptionsPanel.xaml Code + + AssemblyInfo.xaml + TaskViewResources.xaml @@ -413,10 +422,10 @@ ExtractInterfaceDialog.cs - + + Form - NewProjectDialog.cs @@ -539,11 +548,15 @@ - + + Form + ToolNotFoundDialog.cs - + + UserControl + TabbedOptionsDialog.xaml Code @@ -660,11 +673,9 @@ UserControl - - UserControl - + - Form + UserControl Form @@ -672,9 +683,7 @@ UserControl - - Form - + Form @@ -685,7 +694,7 @@ Component - Component + UserControl Component @@ -810,7 +819,6 @@ - UserControl BuildEvents.xaml @@ -834,12 +842,18 @@ - + + Component + - - + + Form + + + UserControl + @@ -847,8 +861,12 @@ - - + + Form + + + Component + @@ -864,7 +882,9 @@ - + + Component + @@ -881,16 +901,6 @@ - - - - - - - - - - @@ -904,6 +914,10 @@ + + Designer + MSBuild:Compile + @@ -953,27 +967,6 @@ ICSharpCode.Core False - - - - - - - - - - - - - - - - - - - - - {7E4A7172-7FF5-48D0-B719-7CD959DD1AC9} ICSharpCode.Core.Presentation diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/AssemblyInfo.xaml b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/AssemblyInfo.xaml new file mode 100644 index 0000000000..85b597d77a --- /dev/null +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/AssemblyInfo.xaml @@ -0,0 +1,13 @@ + + + Hello world! + + diff --git a/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/AssemblyInfo.xaml.cs b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/AssemblyInfo.xaml.cs new file mode 100644 index 0000000000..46e3c388c5 --- /dev/null +++ b/src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/AssemblyInfo.xaml.cs @@ -0,0 +1,29 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; +using ICSharpCode.SharpDevelop.Gui.OptionPanels; + +namespace ICSharpCode.SharpDevelop.Gui.OptionPanels +{ + /// + /// Interaction logic for AssemblyInfo.xaml + /// + public partial class AssemblyInfo : ProjectOptionPanel + { + public AssemblyInfo() + { + InitializeComponent(); + } + } +}