55 lines
2.2 KiB
XML
55 lines
2.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
<LangVersion>7.3</LangVersion>
|
|
<RestoreAdditionalProjectSources>
|
|
https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json;
|
|
https://dotnet.myget.org/F/blazor-dev/api/v3/index.json;
|
|
</RestoreAdditionalProjectSources>
|
|
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
|
|
<Configurations>Debug;Release;Wasm</Configurations>
|
|
<Version>0.0.1</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>Not for production use.</PackageReleaseNotes>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Wasm|AnyCPU'">
|
|
<DefineConstants>TRACE;WASM</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Scripts\00.00.01.sql" />
|
|
<None Remove="Scripts\Master.sql" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Scripts\Master.sql" />
|
|
<EmbeddedResource Include="Scripts\00.00.01.sql" />
|
|
<EmbeddedResource Include="Scripts\00.00.00.sql" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="dbup" Version="4.2.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Blazor.Server" Version="3.0.0-preview9.19465.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.0.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.0.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.0.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.0.0" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.0.0-rc3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Oqtane.Client\Oqtane.Client.csproj" />
|
|
<ProjectReference Include="..\Oqtane.Shared\Oqtane.Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|