forked from xoofx/LibObjectFile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLibObjectFile.Tests.csproj
More file actions
109 lines (100 loc) · 3.82 KB
/
Copy pathLibObjectFile.Tests.csproj
File metadata and controls
109 lines (100 loc) · 3.82 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IsPackable>false</IsPackable>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Remove="Elf\helloworld" />
<None Remove="Elf\helloworld.o" />
<None Remove="Elf\helloworld_debug" />
<None Remove="Elf\libhelloworld.a" />
<None Remove="Elf\lib_debug.so" />
<None Remove="Elf\multiple_functions_debug.o" />
<None Remove="Elf\small_debug.o" />
<None Remove="helloworld.cpp" />
<None Remove="libstdc++.so" />
<None Remove="lib_a.cpp" />
<None Remove="lib_b.cpp" />
<None Remove="multiple_functions.cpp" />
<None Remove="PE\NativeConsole2Win64.exe" />
<None Remove="PE\NativeConsoleWin64.exe" />
<None Remove="PE\NativeLibraryWin64.dll" />
<None Remove="PE\RawNativeConsoleWin64.exe" />
<None Remove="small.cpp" />
</ItemGroup>
<ItemGroup>
<Content Include="Elf\helloworld">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Elf\helloworld.o">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Elf\helloworld_debug">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Elf\libhelloworld.a">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Elf\libstdc++.so">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Elf\lib_debug.so">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Elf\multiple_functions.cpp">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Elf\lib_b.cpp">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Elf\lib_a.cpp">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Elf\multiple_functions_debug.o">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Elf\small_debug.o">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="PE\NativeConsole2Win64.exe">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="PE\NativeConsoleWin64.exe">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="PE\NativeLibraryWin64.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="PE\RawNativeConsoleWin64.exe">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Elf\small.cpp">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Elf\helloworld.cpp">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Include="$(ProjectDir)TestFiles\**" CopyToOutputDirectory="PreserveNewest" LinkBase="TestFiles\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MSTest" />
<PackageReference Include="Verify.DiffPlex" />
<PackageReference Include="Verify.MSTest" />
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LibObjectFile\LibObjectFile.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Verified\" />
</ItemGroup>
<ItemGroup>
<None Update=".\src\LibObjectFile.Tests\TestFiles\TestDwarf2.elf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>