Skip to content

Commit ca513f0

Browse files
committed
Adds OutputType property to project files
Specifies the OutputType property as Library in the project files. This ensures that the projects are built as libraries, which is necessary for proper packaging and referencing in other projects.
1 parent 6548a16 commit ca513f0

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/Uno/Prism.DryIoc.Uno/Prism.DryIoc.Uno.WinUI.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<Project Sdk="Uno.Sdk">
33
<PropertyGroup>
44
<TargetFrameworks>$(UnoTargetFrameworks)</TargetFrameworks>
5+
<OutputType>Library</OutputType>
56
<NoWarn>$(NoWarn);1591</NoWarn>
67
<AssemblyName>Prism.DryIoc.Uno</AssemblyName>
78
<PackageId>Prism.DryIoc.Uno.WinUI</PackageId>

src/Uno/Prism.Uno.Markup/Prism.Uno.WinUI.Markup.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project Sdk="Uno.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>$(UnoTargetFrameworks)</TargetFrameworks>
4+
<OutputType>Library</OutputType>
45
<GenerateLibraryLayout>true</GenerateLibraryLayout>
56
</PropertyGroup>
67

src/Uno/Prism.Uno/Prism.Uno.WinUI.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<Project Sdk="Uno.Sdk">
33
<PropertyGroup>
44
<TargetFrameworks>$(UnoTargetFrameworks)</TargetFrameworks>
5+
<OutputType>Library</OutputType>
56
<GenerateLibraryLayout>true</GenerateLibraryLayout>
67
<AssemblyName>Prism.Uno</AssemblyName>
78
<RootNamespace>Prism</RootNamespace>

0 commit comments

Comments
 (0)