-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathComponentBasedSoftwareArchitectures.csproj
More file actions
45 lines (43 loc) · 1.95 KB
/
Copy pathComponentBasedSoftwareArchitectures.csproj
File metadata and controls
45 lines (43 loc) · 1.95 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
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net48;net9.0;net10.0</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup>
<OutputPath>..\..\Build\Tests\</OutputPath>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="cbs.nmeta" />
<EmbeddedResource Include="identifier.nmeta" />
<None Include="default.xmi">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<EmbeddedResource Include="pcm.nmeta" />
<EmbeddedResource Include="ProbabilityFunction.nmeta" />
<EmbeddedResource Include="stoex.nmeta" />
<EmbeddedResource Include="Units.nmeta" />
<None Include="PrioritizingMediaStore.xmi">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="WithCache.xmi">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Collections\Collections\Collections.csproj" />
<ProjectReference Include="..\..\Expressions\Expressions.Linq\Expressions.Linq.csproj" />
<ProjectReference Include="..\..\Expressions\Expressions\Expressions.csproj" />
<ProjectReference Include="..\..\Models\Models\Models.csproj" />
<ProjectReference Include="..\..\Models\Serialization\Serialization.csproj" />
<ProjectReference Include="..\..\Synchronizations\Synchronizations\Synchronizations.csproj" />
<ProjectReference Include="..\..\Tools\Utilities\Utilities.csproj" />
<ProjectReference Include="..\..\Transformations\Transformations.Core\Transformations.Core.csproj" />
<ProjectReference Include="..\..\Transformations\Transformations\Transformations.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.6.0" />
<PackageReference Include="MSTest.TestAdapter" Version="4.2.3" />
<PackageReference Include="MSTest.TestFramework" Version="4.2.3" />
</ItemGroup>
</Project>