-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathInfoBoxCore.Designer.csproj
More file actions
49 lines (41 loc) · 1.94 KB
/
InfoBoxCore.Designer.csproj
File metadata and controls
49 lines (41 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>net8.0-windows;net9.0-windows;net10.0-windows</TargetFrameworks>
<UseWindowsForms>true</UseWindowsForms>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<RootNamespace>InfoBox.Designer</RootNamespace>
<AssemblyName>InfoBox.Designer</AssemblyName>
<Authors>Johann Blais</Authors>
<Company>Johann Blais</Company>
<Product>InformationBox Designer</Product>
<Copyright>Copyright © Johann Blais 2007-2026</Copyright>
<NeutralLanguage>en</NeutralLanguage>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net10.0-windows|AnyCPU'">
<WarningLevel>8</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net10.0-windows|AnyCPU'">
<WarningLevel>8</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0-windows|AnyCPU'">
<WarningLevel>8</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-windows|AnyCPU'">
<WarningLevel>8</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\InfoBox.Designer\**\*.cs" Exclude="..\InfoBox.Designer\**\AssemblyInfo.cs" />
<EmbeddedResource Include="..\InfoBox.Designer\**\*.resx" />
</ItemGroup>
<ItemGroup>
<Compile Remove="..\InfoBox.Designer\obj\**" />
<Compile Remove="obj\**" />
<EmbeddedResource Remove="obj\**" />
<None Remove="obj\**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\InfoBoxCore\InfoBoxCore.csproj" />
</ItemGroup>
</Project>