-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathInfoBoxCore.csproj
More file actions
21 lines (18 loc) · 826 Bytes
/
InfoBoxCore.csproj
File metadata and controls
21 lines (18 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>net8.0-windows;net9.0-windows;net10.0-windows</TargetFrameworks>
<UseWindowsForms>true</UseWindowsForms>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<RootNamespace>InfoBox</RootNamespace>
<AssemblyName>InfoBox</AssemblyName>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\InfoBox\**\*.cs" Exclude="**\obj\**\*.cs" />
<EmbeddedResource Include="..\InfoBox\**\*.resx" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.102" PrivateAssets="All" />
</ItemGroup>
</Project>