-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathYamlLocalizationSimulatedResourcePathTests.csproj
More file actions
40 lines (33 loc) · 1.41 KB
/
YamlLocalizationSimulatedResourcePathTests.csproj
File metadata and controls
40 lines (33 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>$(SampleTargetFramework)</TargetFramework>
<AssemblyName>YamlLocalizationSimulatedResourcePathTests</AssemblyName>
<RootNamespace>YamlLocalizationSimulatedResourcePathTests</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Content Remove="Resources\**\*.yaml" />
<EmbeddedResource
Type="Non-Resx"
WithCulture="false"
Include="Resources\**\*.yaml"
LogicalName="$(RootNamespace).$([System.String]::Copy('%(RelativeDir)').Replace('\','.').Replace('/','.').Replace('Resources.',''))%(Filename).yaml"
/>
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Benchmark" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\YamlLocalizationTests\YamlLocalizationTests.csproj" />
<ProjectReference Include="..\..\..\src\Yaml.Localization\src\Yaml.Localization.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" />
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="Moq" />
<PackageReference Include="xunit" />
<PackageReference Include="xunit.runner.visualstudio">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>