Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BlazorFluentUI.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ VisualStudioVersion = 16.6.30114.105
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{30F6D568-0EFB-479D-8D69-C51CE5CABC22}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Components.FluentUI", "src\Microsoft.Components.FluentUI\Microsoft.Components.FluentUI.csproj", "{9AA1E7D0-AFBB-4EAA-BC77-42CC0F07EA0D}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Components.FluentUI", "src\Microsoft.AspNetCore.Components.FluentUI\Microsoft.AspNetCore.Components.FluentUI.csproj", "{9AA1E7D0-AFBB-4EAA-BC77-42CC0F07EA0D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "examples", "examples", "{71623095-9CCB-40BA-A0A7-4A739DA8E913}"
EndProject
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<ItemGroup>
<ProjectReference Include="..\..\src\Microsoft.Components.FluentUI\Microsoft.Components.FluentUI.csproj" />
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.Components.FluentUI\Microsoft.AspNetCore.Components.FluentUI.csproj" />
</ItemGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<Authors>Microsoft Corporation.</Authors>
<Copyright>2021</Copyright>
<NeutralLanguage>en</NeutralLanguage>
<Owners>Microsoft Corporation</Owners>
<PackageProjectUrl>https://github.com/dotnet/blazor-fluentui</PackageProjectUrl>
<Summary>Fluent UI Web Components library for Blazor on .NET</Summary>
<PackageTags>Web Components, .NET, FluentUI, FAST, Blazor, .NET 5.0</PackageTags>
<Title>Microsoft Fluent UI Components Library for Blazor on FAST</Title>
<Description>Authored by the Microsoft FAST team.</Description>
<SignAssembly>false</SignAssembly>
<PackageVersion>0.0.2</PackageVersion>
<ReleaseVersion>0.0.2</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<Optimize>true</Optimize>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<DocumentationFile>bin\Debug\net5.0\Microsoft.AspNetCore.Components.FluentUI.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.5" />
</ItemGroup>

</Project>

This file was deleted.