Skip to content

Commit 976689d

Browse files
fix #39 (#40)
1 parent 7f99dc9 commit 976689d

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

.vscode/tasks.json

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "build",
8+
"type": "shell",
9+
"command": "msbuild",
10+
"args": [
11+
// Ask msbuild to generate full paths for file names.
12+
"/property:GenerateFullPaths=true",
13+
"/t:build"
14+
],
15+
"group": "build",
16+
"presentation": {
17+
// Reveal the output only if unrecognized errors occur.
18+
"reveal": "silent"
19+
},
20+
// Use the standard MS compiler pattern to detect errors, warnings and infos
21+
"problemMatcher": "$msCompile"
22+
}
23+
]
24+
}

examples/LightStep.CSharpAspectTestApp/LightStep.CSharpAspectTestApp.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,5 @@
7979
<Error Condition="!Exists('..\..\packages\PostSharp.6.0.27\build\PostSharp.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\PostSharp.6.0.27\build\PostSharp.props'))" />
8080
<Error Condition="!Exists('..\..\packages\PostSharp.6.0.27\build\PostSharp.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\PostSharp.6.0.27\build\PostSharp.targets'))" />
8181
</Target>
82-
<Import Project="..\..\packages\PostSharp.6.0.27\build\PostSharp.targets" Condition="Exists('..\..\packages\PostSharp.6.0.27\build\PostSharp.targets')" />
82+
<Import Project="..\..\packages\PostSharp.6.0.27\build\PostSharp.targets" Condition="Exists('..\..\packages\PostSharp.6.0.27\build\PostSharp.targets') AND '$(OS)' == 'Windows_NT'" />
8383
</Project>

0 commit comments

Comments
 (0)