mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
65 lines
2.5 KiB
XML
65 lines
2.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net472</TargetFramework>
|
|
<OutputType>WinExe</OutputType>
|
|
<IncludeWindowsFormsReferences>True</IncludeWindowsFormsReferences>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<Compile Update="BreakpointUC.cs" SubType="UserControl" />
|
|
<Compile Update="BreakpointUC.Designer.cs" DependentUpon="BreakpointUC.cs" />
|
|
|
|
<Compile Update="ToolTipListBox.cs" SubType="Component" />
|
|
|
|
<Compile Update="WatchUC.cs" SubType="UserControl" />
|
|
<Compile Update="WatchUC.Designer.cs" DependentUpon="WatchUC.cs" />
|
|
|
|
<Compile Update="FormBreakpoints.cs" SubType="Form" />
|
|
<Compile Update="FormBreakpoints.Designer.cs" DependentUpon="FormBreakpoints.cs" />
|
|
|
|
<Compile Update="FormCallStack.cs" SubType="Form" />
|
|
<Compile Update="FormCallStack.Designer.cs" DependentUpon="FormCallStack.cs" />
|
|
|
|
<Compile Update="FormLog.cs" SubType="Form" />
|
|
<Compile Update="FormLog.Designer.cs" DependentUpon="FormLog.cs" />
|
|
|
|
<Compile Update="FormMain.cs" SubType="Form" />
|
|
<Compile Update="FormMain.Designer.cs" DependentUpon="FormMain.cs" />
|
|
|
|
<Compile Update="FormRegisters.cs" SubType="Form" />
|
|
<Compile Update="FormRegisters.Designer.cs" DependentUpon="FormRegisters.cs" />
|
|
|
|
<Compile Update="FormWatches.cs" SubType="Form" />
|
|
<Compile Update="FormWatches.Designer.cs" DependentUpon="FormWatches.cs" />
|
|
|
|
<Compile Update="FormHistory.cs" SubType="Form" />
|
|
<Compile Update="FormHistory.Designer.cs" DependentUpon="FormHistory.cs" />
|
|
|
|
<Compile Update="FormSettings.cs" SubType="Form" />
|
|
<Compile Update="FormSettings.Designer.cs" DependentUpon="FormSettings.cs" />
|
|
|
|
<EmbeddedResource Update="**" DependentUpon="%(Filename).cs" />
|
|
|
|
<None Update="SettingsDS.xsc" DependentUpon="SettingsDS.xsd" />
|
|
<None Update="SettingsDS.xsd" SubType="Designer" Generator="MSDataSetGenerator" LastGenOutput="SettingsDS.Designer.cs" />
|
|
<None Update="SettingsDS.xss" DependentUpon="SettingsDS.xsd" />
|
|
|
|
<Compile Update="SettingsDS.Designer.cs" AutoGen="True" DesignTime="True" DependentUpon="SettingsDS.xsd" />
|
|
|
|
<Content Include="Docs\index.html" />
|
|
<Content Include="ReadMe.html" />
|
|
<Content Include="ToDo.html" />
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Cosmos.Build.Common" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|