Skip to content
Open
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
File renamed without changes.
11 changes: 11 additions & 0 deletions src/Utility.Components.Test/UnitTest1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
namespace Utility.Components.Test
{
public class UnitTest1
{
[Fact]
public void Test1()
{

}
}
}
27 changes: 27 additions & 0 deletions src/Utility.Components.Test/Utility.Components.Test.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="xunit" Version="2.5.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Utility.Components\Utility.Components.csproj" />
</ItemGroup>

<ItemGroup>
<Using Include="Xunit" />
</ItemGroup>

</Project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
18 changes: 18 additions & 0 deletions src/Utility.Components/Utility.Components.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>


<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>

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

</Project>
1 change: 1 addition & 0 deletions src/Utility.Components/_Imports.razor
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@using Microsoft.AspNetCore.Components.Web
12 changes: 12 additions & 0 deletions src/Utility.sln
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
global.json = global.json
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Utility.Components", "Utility.Components\Utility.Components.csproj", "{13FB4A93-5411-44DB-B85B-A446B5D5FDB3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Utility.Components.Test", "Utility.Components.Test\Utility.Components.Test.csproj", "{BF3C2572-44A4-4A99-AAD6-37164D3F222C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -32,6 +36,14 @@ Global
{76F5E0AE-7A22-4471-A7B8-2E514D032BF0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{76F5E0AE-7A22-4471-A7B8-2E514D032BF0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{76F5E0AE-7A22-4471-A7B8-2E514D032BF0}.Release|Any CPU.Build.0 = Release|Any CPU
{13FB4A93-5411-44DB-B85B-A446B5D5FDB3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{13FB4A93-5411-44DB-B85B-A446B5D5FDB3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{13FB4A93-5411-44DB-B85B-A446B5D5FDB3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{13FB4A93-5411-44DB-B85B-A446B5D5FDB3}.Release|Any CPU.Build.0 = Release|Any CPU
{BF3C2572-44A4-4A99-AAD6-37164D3F222C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BF3C2572-44A4-4A99-AAD6-37164D3F222C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BF3C2572-44A4-4A99-AAD6-37164D3F222C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BF3C2572-44A4-4A99-AAD6-37164D3F222C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
1 change: 1 addition & 0 deletions src/Utility/Utility.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

<ItemGroup>
<ProjectReference Include="..\Utility.Common\Utility.Common.csproj" />
<ProjectReference Include="..\Utility.Components\Utility.Components.csproj" />
</ItemGroup>

</Project>
Loading