-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSampleApp.csproj
27 lines (24 loc) · 1.22 KB
/
SampleApp.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.0.0</Version>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\AssemblyToProcess\AssemblyToProcess.csproj" />
<ProjectReference Include="..\AssemblyWithEmbeddedSymbols\AssemblyWithEmbeddedSymbols.csproj" />
<ProjectReference Include="..\AssemblyWithNoStrongName\AssemblyWithNoStrongName.csproj" />
<ProjectReference Include="..\AssemblyWithNoSymbols\AssemblyWithNoSymbols.csproj" />
<ProjectReference Include="..\AssemblyWithPdb\AssemblyWithPdb.csproj" />
<ProjectReference Include="..\AssemblyWithResources\AssemblyWithResources.csproj" />
<ProjectReference Include="..\AssemblyWithStrongName\AssemblyWithStrongName.csproj" />
</ItemGroup>
<!-- begin-snippet: WriteReferenceForAlias -->
<Target Name="WriteReferenceForAlias" AfterTargets="AfterCompile">
<ItemGroup>
<ReferenceForAlias Include="@(ReferencePath)" Condition="'%(FileName)' == 'CommandLine'" />
</ItemGroup>
<WriteLinesToFile File="$(TargetDir)/alias-references.txt" Lines="%(ReferenceForAlias.FullPath)" Overwrite="true" />
</Target>
<!-- end-snippet -->
</Project>