22 lines
815 B
XML
22 lines
815 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ResourcesClassLibraryNoAttribute\ResourcesClassLibraryNoAttribute.csproj" />
|
|
<ProjectReference Include="..\ResourcesClassLibraryWithAttribute\ResourcesClassLibraryWithAttribute.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.AspNetCore.Localization" />
|
|
<Reference Include="Microsoft.AspNetCore.Server.Kestrel" />
|
|
<Reference Include="Microsoft.AspNetCore.Testing" />
|
|
<Reference Include="Microsoft.Extensions.Configuration.CommandLine" />
|
|
<Reference Include="Microsoft.Extensions.Localization" />
|
|
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|