mirror of
https://github.com/ckaczor/wpf-notifyicon.git
synced 2026-01-14 17:28:29 -05:00
61 lines
2.4 KiB
XML
61 lines
2.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<StartupObject>WindowsFormsSample.Program</StartupObject>
|
|
<AssemblyTitle>WindowsFormsSample</AssemblyTitle>
|
|
<Product>WindowsFormsSample</Product>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\NotifyIconWpf\NotifyIconWpf.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="PresentationCore" />
|
|
<Reference Include="PresentationFramework" />
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
<Reference Include="System.Deployment" />
|
|
<Reference Include="System.Xaml" />
|
|
<Reference Include="System.Windows.Forms" />
|
|
<Reference Include="UIAutomationProvider" />
|
|
<Reference Include="WindowsBase" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Update="Form1.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="Form1.Designer.cs">
|
|
<DependentUpon>Form1.cs</DependentUpon>
|
|
</Compile>
|
|
<EmbeddedResource Update="Form1.resx">
|
|
<DependentUpon>Form1.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
<SubType>Designer</SubType>
|
|
</EmbeddedResource>
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
<DesignTime>True</DesignTime>
|
|
</Compile>
|
|
<Compile Update="Properties\Settings.Designer.cs">
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Settings.settings</DependentUpon>
|
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
|
</Compile>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Page Exclude="**\bin\**\*.xaml;**\obj\**\*.xaml" Generator="MSBuild:Compile" Include="**\*.xaml" SubType="Designer" />
|
|
<Compile DependentUpon="%(Filename)" Update="**\*.xaml.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile DependentUpon="%(Filename)" SubType="Code" Update="**\obj\**\*.g$(DefaultLanguageSourceExtension)" />
|
|
<Compile DependentUpon="%(Filename)" SubType="Designer" Update="**\*.xaml$(DefaultLanguageSourceExtension)" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Update="Properties\Settings.settings">
|
|
<Generator>SettingsSingleFileGenerator</Generator>
|
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project> |