-
-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
# Conflicts: # .config/dotnet-tools.json # CHANGELOG.md # Nuget/Build.props # Src/CSharpier.MsBuild/build/CSharpier.MsBuild.targets # Src/CSharpier.Tests/CSharpier.Tests.csproj # Src/CSharpier.VSCode/CHANGELOG.md # Src/CSharpier.VSCode/package.json # Src/CSharpier.VSCode/src/DiagnosticsService.ts # Src/CSharpier.VisualStudio/CSharpier.VisualStudio/CSharpier.VisualStudio.csproj # Src/CSharpier.VisualStudio/CSharpier.VisualStudio/source.extension.vsixmanifest # Src/CSharpier.VisualStudio/CSharpier.VisualStudio2019/CSharpier.VisualStudio2019.csproj # Src/CSharpier.VisualStudio/CSharpier.VisualStudio2019/source.extension.vsixmanifest # Src/CSharpier.VisualStudio/ChangeLog.md # Src/CSharpier/SyntaxPrinter/SyntaxNodePrinters/CompilationUnit.cs
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
build | ||
|
||
Uploads/ | ||
|
||
Tests/MsBuild/TestCases/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
<Project Sdk="Microsoft.Build.NoTargets/3.1.0"> | ||
</Project> | ||
<Project Sdk="Microsoft.Build.NoTargets/3.1.0"></Project> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
<Project Sdk="Microsoft.Build.NoTargets/3.1.0"> | ||
</Project> | ||
<Project Sdk="Microsoft.Build.NoTargets/3.1.0"></Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
<Project Sdk="Microsoft.Build.NoTargets/3.1.0"> | ||
</Project> | ||
<Project Sdk="Microsoft.Build.NoTargets/3.1.0"></Project> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,26 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="../../Nuget/Build.props"/> | ||
<PropertyGroup> | ||
<TargetFrameworks>net8.0;net9.0</TargetFrameworks> | ||
<PackageId>CSharpier.MsBuild</PackageId> | ||
<DevelopmentDependency>true</DevelopmentDependency> | ||
<CSharpierOutputDir>../CSharpier.Cli/bin/$(Configuration)/$(TargetFramework)</CSharpierOutputDir> | ||
</PropertyGroup> | ||
|
||
<!-- | ||
<Import Project="../../Nuget/Build.props" /> | ||
<PropertyGroup> | ||
<TargetFrameworks>net8.0;net9.0</TargetFrameworks> | ||
<PackageId>CSharpier.MsBuild</PackageId> | ||
<DevelopmentDependency>true</DevelopmentDependency> | ||
<CSharpierOutputDir>../CSharpier.Cli/bin/$(Configuration)/$(TargetFramework)</CSharpierOutputDir> | ||
</PropertyGroup> | ||
<!-- | ||
Note: There is no <ProjectReference /> here because that would cause msbuild to | ||
make it a dependency in the output package, which causes all sorts of issues as | ||
CSharpier is a net9.0 project with <PackAsTool> and this is neither. | ||
--> | ||
<Target Name="BuildCSharpier" BeforeTargets="Restore"> | ||
<Exec command="dotnet build -c $(Configuration)" WorkingDirectory="../CSharpier.Cli" /> | ||
</Target> | ||
|
||
<ItemGroup> | ||
<None Include="..\..\logo.png" Pack="true" PackagePath=""> | ||
<Link>logo.png</Link> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Content Include="build/*" PackagePath="build/" /> | ||
<Content Include="$(CSharpierOutputDir)/**" PackagePath="tools/csharpier" /> | ||
</ItemGroup> | ||
<Target Name="BuildCSharpier" BeforeTargets="Restore"> | ||
<Exec command="dotnet build -c $(Configuration)" WorkingDirectory="../CSharpier.Cli" /> | ||
</Target> | ||
<ItemGroup> | ||
<None Include="..\..\logo.png" Pack="true" PackagePath=""> | ||
<Link>logo.png</Link> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Include="build/*" PackagePath="build/" /> | ||
<Content Include="$(CSharpierOutputDir)/**" PackagePath="tools/csharpier" /> | ||
</ItemGroup> | ||
</Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<Project Sdk="Microsoft.Build.NoTargets/3.1.0"> | ||
<ItemGroup> | ||
<Content Include="CSharpier.MsBuild.csproj"/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Include="CSharpier.MsBuild.csproj" /> | ||
</ItemGroup> | ||
</Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<Project> | ||
<PropertyGroup Condition=" '$(CSharpier_Check)' == '' "> | ||
<!-- Setting default value here, so it can be overwritten by caller --> | ||
<CSharpier_Check>false</CSharpier_Check> | ||
<CSharpier_Check Condition=" '$(Configuration)' == 'Release' ">true</CSharpier_Check> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(CSharpier_Check)' == '' "> | ||
<!-- Setting default value here, so it can be overwritten by caller --> | ||
<CSharpier_Check>false</CSharpier_Check> | ||
<CSharpier_Check Condition=" '$(Configuration)' == 'Release' ">true</CSharpier_Check> | ||
</PropertyGroup> | ||
</Project> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.