56 lines
1.8 KiB
XML
56 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<Version>2.0.0</Version>
|
|
<Product>Oqtane</Product>
|
|
<Authors>Shaun Walker</Authors>
|
|
<Company>.NET Foundation</Company>
|
|
<Description>Modular Application Framework for Blazor</Description>
|
|
<Copyright>.NET Foundation</Copyright>
|
|
<PackageProjectUrl>https://www.oqtane.org</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/oqtane</RepositoryUrl>
|
|
<RepositoryType>Git</RepositoryType>
|
|
<PackageReleaseNotes>https://github.com/oqtane/oqtane.framework/releases/tag/v2.0.0</PackageReleaseNotes>
|
|
<RootNamespace>Oqtane</RootNamespace>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
|
|
<PackageReference Include="bunit.web" Version="1.0.0-beta-10" />
|
|
<PackageReference Include="bunit.xunit" Version="1.0.0-beta-10" />
|
|
<PackageReference Include="xunit.core" Version="2.4.1" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Oqtane.Shared\Oqtane.Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Repository\**" />
|
|
<Compile Remove="Security\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Remove="Repository\**" />
|
|
<EmbeddedResource Remove="Security\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Repository\**" />
|
|
<None Remove="Security\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="Repository\**" />
|
|
<Content Remove="Security\**" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|