- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想对 csproj 文件进行一些路径更改以配置源代码管理。我没有手动完成,而是想遍历 csproj 文件并在每个 csproj 中使用 Linq-to-Xml 根据需要更改构建和引用路径。
所以我环顾四周,目前正在尝试使用:
public void Read(string fileName)
{
XDocument doc = XDocument.Load(fileName);
foreach (XElement el in doc.Root.Elements())
{
Console.WriteLine("{0} {1}", el.Name, el.Attribute("id").Value);
Console.WriteLine(" Attributes:");
foreach (XAttribute attr in el.Attributes())
Console.WriteLine(" {0}", attr);
Console.WriteLine(" Elements:");
foreach (XElement element in el.Elements())
Console.WriteLine(" {0}: {1}", element.Name, element.Value);
}
}
根据这个 SO 问题的公认答案 xml-parsing-read-a-simple-xml-file-and-retrieve-values .然而当行
foreach (XElement el in doc.Root.Elements())
已处理 我在调用 Elements 时收到空引用错误。我也试过调用节点、后代等,但它们都是空的。医生。 doc.Root 确实返回了 proj 文件中的所有内容(顶部的命名空间行除外),所以有些东西我只是没有正确地走它。
那我做错了什么?我希望 Elements 返回一组 XML 片段,我可以遍历或过滤以提取我想要的片段,即
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
更新:
所以这是一个 csproj 示例:
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{2CCAB46D-7A7C-4C65-B6D2-DC2D4049FCD9}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Basd.Core</RootNamespace>
<AssemblyName>Basd.Core</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\Basd.Bin\AnyCPU\Release\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>AnyCPU</PlatformTarget>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\Basd.Bin\AnyCPU\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>AnyCPU</PlatformTarget>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<PlatformTarget>x86</PlatformTarget>
<OutputPath>..\..\Basd.Bin\x86\Debug\</OutputPath>
<DebugType>full</DebugType>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<PlatformTarget>AnyCPU</PlatformTarget>
<OutputPath>..\..\Basd.Bin\AnyCPU\Release\</OutputPath>
<DefineConstants>
</DefineConstants>
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.VisualBasic" />
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Activation\ActivationExtensions.cs" />
<Compile Include="Activation\ActivationMetaDataList.cs" />
<Compile Include="Activation\ActivationProviderFactory.cs" />
<Compile Include="Activation\ActivationMetaDataConfigurationProvider.cs" />
<Compile Include="Activation\ActivationMetaDataConfigurationProviderSection.cs" />
<Compile Include="Activation\ActivationMetaDataProvider.cs" />
<Compile Include="Activation\IActivationMetaData.cs" />
<Compile Include="Activation\ActivationMetaData.cs" />
<Compile Include="Activation\IActivationMetaDataProvider.cs" />
<Compile Include="Collections\DomainList.cs" />
<Compile Include="DateTime\GenerationDateRange.cs" />
<Compile Include="DateTime\DateBlitterExtensions.cs" />
<Compile Include="Dto\DTOStub.generic.cs" />
<Compile Include="Dto\Tabulation.cs" />
<Compile Include="Dto\TabulatedItem.cs" />
<Compile Include="Dto\DTOStub.cs" />
<Compile Include="Environment\EnvironmentContext.cs" />
<Compile Include="Events\Delegates.cs" />
<Compile Include="Activation\ActivationHelper.cs" />
<Compile Include="Helpers\ObjectScrubber.cs" />
<Compile Include="Helpers\SmtpHelper.cs" />
<Compile Include="Interfaces\INameHolder.cs" />
<Compile Include="Interfaces\IFrame.cs" />
<Compile Include="Events\FrameEventArgs.cs" />
<Compile Include="Events\PayloadedEventArgs.cs" />
<Compile Include="Helpers\DateHelper.cs" />
<Compile Include="Helpers\EnumerableDataSources.cs" />
<Compile Include="Helpers\EnumHelper.cs" />
<Compile Include="Helpers\StringsHelper.cs" />
<Compile Include="Interfaces\IIndexable.cs" />
<Compile Include="Interfaces\INameable.cs" />
<Compile Include="Collections\NamedList.cs" />
<Compile Include="Interfaces\IText.cs" />
<Compile Include="Events\KeyChangedEventArgs.cs" />
<Compile Include="DateTime\DateRange.cs" />
<Compile Include="DateTime\EntityDateRange.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="DateTime\IMinimumBoundedDateRange.cs" />
<Compile Include="DateTime\IDateRange.cs" />
<Compile Include="Enumerations.cs" />
<Compile Include="DateTime\IEntityDateRange.cs" />
<Compile Include="Interfaces\IUserNotifier.cs" />
<Compile Include="Collections\IXtendedEnumerable.cs" />
<Compile Include="Membership.cs" />
<Compile Include="DateTime\MinimumBoundedDateRange.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="SeriesCube.cs" />
<Compile Include="Collections\XList.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Compression\" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
从设置了断点的中间窗口
foreach (XElement el in doc.Root.Elements())
?doc.Root.ToString(); "<Project ToolsVersion=\"4.0\" DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\">\r\n <PropertyGroup>\r\n <Configuration Condition=\" '$(Configuration)'
== '' \">Debug</Configuration>\r\n <Platform Condition=\" '$(Platform)' == '' \">AnyCPU</Platform>\r\n <ProductVersion>8.0.30703</ProductVersion>\r\n <SchemaVersion>2.0</SchemaVersion>\r\n <ProjectGuid>{2CCAB46D-7A7C-4C65-B6D2-DC2D4049FCD9}</ProjectGuid>\r\n <OutputType>Library</OutputType>\r\n <AppDesignerFolder>Properties</AppDesignerFolder>\r\n <RootNamespace>Basd.Core</RootNamespace>\r\n <AssemblyName>Basd.Core</AssemblyName>\r\n <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>\r\n <FileAlignment>512</FileAlignment>\r\n <TargetFrameworkProfile></TargetFrameworkProfile>\r\n </PropertyGroup>\r\n <PropertyGroup Condition=\" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' \">\r\n <DebugSymbols>true</DebugSymbols>\r\n <DebugType>full</DebugType>\r\n <Optimize>false</Optim ize>\r\n <OutputPath>..\\..\\Basd.Bin\\AnyCPU\\Release\\</OutputPath>\r\n <DefineConstants>DEBUG;TRACE</DefineConstants>\r\n <ErrorReport>prompt</ErrorReport>\r\n <WarningLevel>4</WarningLevel>\r\n <PlatformTarget>AnyCPU</PlatformTarget>\r\n <Prefer32Bit>false</Prefer32Bit>\r\n </PropertyGroup>\r\n <PropertyGroup Condition=\" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' \">\r\n <DebugType>pdbonly</DebugType>\r\n <Optimize>true</Optimize>\r\n <OutputPath>..\\..\\Basd.Bin\\AnyCPU\\Release\\</OutputPath>\r\n <DefineConstants>TRACE</DefineConstants>\r\n <ErrorReport>prompt</ErrorReport>\r\n <WarningLevel>4</WarningLevel>\r\n <PlatformTarget>AnyCPU</PlatformTarget>\r\n <Prefer32Bit>false</Prefer32Bit>\r\n </PropertyGroup>\r\n <PropertyGroup Condition=\"'$(Configuration)|$(Platform)' == 'Debug|x86'\">\r\n <PlatformTarget>x86</PlatformTarget>\r\n <OutputPath>..\\..\\Basd.Bin\\x86\\Debug\\</OutputPath>\r\n <DebugType>full</DebugType>\r\n <Prefer32Bit>fals e</Prefer32Bit>\r\n </PropertyGroup>\r\n <PropertyGroup Condition=\"'$(Configuration)|$(Platform)' == 'Release|x86'\">\r\n <PlatformTarget>AnyCPU</PlatformTarget>\r\n <OutputPath>..\\..\\Basd.Bin\\AnyCPU\\Release\\</OutputPath>\r\n <DefineConstants></DefineConstants>\r\n <DebugType>pdbonly</DebugType>\r\n <DebugSymbols>true</DebugSymbols>\r\n <Prefer32Bit>false</Prefer32Bit>\r\n </PropertyGroup>\r\n <ItemGroup>\r\n <Reference Include=\"Microsoft.VisualBasic\" />\r\n <Reference Include=\"System\" />\r\n <Reference Include=\"System.Configuration\" />\r\n <Reference Include=\"System.Core\" />\r\n <Reference Include=\"System.Xml.Linq\" />\r\n <Reference Include=\"System.Data.DataSetExtensions\" />\r\n <Reference Include=\"Microsoft.CSharp\" />\r\n <Reference Include=\"System.Data\" />\r\n <Reference Include=\"System.Xml\" />\r\n </ItemGroup>\r\n <ItemGroup>\r\n <Compile Include=\"Activation\\ActivationExtensions.cs\" />\r\n <Compile Include=\"Activation\\Act ivationMetaDataList.cs\" />\r\n <Compile Include=\"Activation\\ActivationProviderFactory.cs\" />\r\n <Compile Include=\"Activation\\ActivationMetaDataConfigurationProvider.cs\" />\r\n <Compile Include=\"Activation\\ActivationMetaDataConfigurationProviderSection.cs\" />\r\n <Compile Include=\"Activation\\ActivationMetaDataProvider.cs\" />\r\n <Compile Include=\"Activation\\IActivationMetaData.cs\" />\r\n <Compile Include=\"Activation\\ActivationMetaData.cs\" />\r\n <Compile Include=\"Activation\\IActivationMetaDataProvider.cs\" />\r\n <Compile Include=\"Collections\\DomainList.cs\" />\r\n <Compile Include=\"DateTime\\GenerationDateRange.cs\" />\r\n <Compile Include=\"DateTime\\DateBlitterExtensions.cs\" />\r\n <Compile Include=\"Dto\\DTOStub.generic.cs\" />\r\n <Compile Include=\"Dto\\Tabulation.cs\" />\r\n <Compile Include=\"Dto\\TabulatedItem.cs\" />\r\n <Compile Include=\"Dto\\DTOStub.cs\" />\r\n <Compile Include=\"Environment\\EnvironmentContext.cs\" />\r\n <C ompile Include=\"Events\\Delegates.cs\" />\r\n <Compile Include=\"Activation\\ActivationHelper.cs\" />\r\n <Compile Include=\"Helpers\\ObjectScrubber.cs\" />\r\n <Compile Include=\"Helpers\\SmtpHelper.cs\" />\r\n <Compile Include=\"Interfaces\\INameHolder.cs\" />\r\n <Compile Include=\"Interfaces\\IFrame.cs\" />\r\n <Compile Include=\"Events\\FrameEventArgs.cs\" />\r\n <Compile Include=\"Events\\PayloadedEventArgs.cs\" />\r\n <Compile Include=\"Helpers\\DateHelper.cs\" />\r\n <Compile Include=\"Helpers\\EnumerableDataSources.cs\" />\r\n <Compile Include=\"Helpers\\EnumHelper.cs\" />\r\n <Compile Include=\"Helpers\\StringsHelper.cs\" />\r\n <Compile Include=\"Interfaces\\IIndexable.cs\" />\r\n <Compile Include=\"Interfaces\\INameable.cs\" />\r\n <Compile Include=\"Collections\\NamedList.cs\" />\r\n <Compile Include=\"Interfaces\\IText.cs\" />\r\n <Compile Include=\"Events\\KeyChangedEventArgs.cs\" />\r\n <Compile Include=\"DateTime\\DateRange.cs\" />\r\n <Co mpile Include=\"DateTime\\EntityDateRange.cs\">\r\n <SubType>Code</SubType>\r\n </Compile>\r\n <Compile Include=\"DateTime\\IMinimumBoundedDateRange.cs\" />\r\n <Compile Include=\"DateTime\\IDateRange.cs\" />\r\n <Compile Include=\"Enumerations.cs\" />\r\n <Compile Include=\"DateTime\\IEntityDateRange.cs\" />\r\n <Compile Include=\"Interfaces\\IUserNotifier.cs\" />\r\n <Compile Include=\"Collections\\IXtendedEnumerable.cs\" />\r\n <Compile Include=\"Membership.cs\" />\r\n <Compile Include=\"DateTime\\MinimumBoundedDateRange.cs\" />\r\n <Compile Include=\"Properties\\AssemblyInfo.cs\" />\r\n <Compile Include=\"Properties\\Resources.Designer.cs\">\r\n <AutoGen>True</AutoGen>\r\n <DesignTime>True</DesignTime>\r\n <DependentUpon>Resources.resx</DependentUpon>\r\n </Compile>\r\n <Compile Include=\"SeriesCube.cs\" />\r\n <Compile Include=\"Collections\\XList.cs\" />\r\n </ItemGroup>\r\n <ItemGroup>\r\n <Folder Include=\"Compression\\\" />\r\n </Item Group>\r\n <ItemGroup>\r\n <EmbeddedResource Include=\"Properties\\Resources.resx\">\r\n <Generator>ResXFileCodeGenerator</Generator>\r\n <LastGenOutput>Resources.Designer.cs</LastGenOutput>\r\n </EmbeddedResource>\r\n </ItemGroup>\r\n <Import Project=\"$(MSBuildToolsPath)\\Microsoft.CSharp.targets\" />\r\n <!-- To modify your build process, add your task inside one of the targets below and uncomment it. \r\n Other similar extension points exist, see Microsoft.Common.targets.\r\n <Target Name=\"BeforeBuild\">\r\n </Target>\r\n <Target Name=\"AfterBuild\">\r\n </Target>\r\n -->\r\n</Project>"
?doc.Root.Name; {{http://schemas.microsoft.com/developer/msbuild/2003}Project}
hashCode: 541551665
localName: "Project"
LocalName: "Project"
Namespace: {http://schemas.microsoft.com/developer/msbuild/2003}
NamespaceName: "http://schemas.microsoft.com/developer/msbuild/2003"
ns: {http://schemas.microsoft.com/developer/msbuild/2003}
?doc.Root.Descendants(); {System.Xml.Linq.XContainer.GetDescendants}
name: null
self: false
System.Collections.Generic.IEnumerator<System.Xml.Linq.XElement>.Current: null
System.Collections.IEnumerator.Current: null ?doc.Root.Nodes(); {System.Xml.Linq.XContainer.Nodes}
System.Collections.Generic.IEnumerator<System.Xml.Linq.XNode>.Current: null
System.Collections.IEnumerator.Current: null ?doc.Root.Attributes();
最佳答案
您在这一行中遇到异常:
Console.WriteLine("{0} {1}", el.Name, el.Attribute("id").Value);
因为至少根的第一个子元素,在您的示例中它是 PropertyGroup
不包含 id
属性。
我可以建议你将这一行重写为
Console.WriteLine("{0} {1}", el.Name, (string)el.Attribute("id"));
在这种情况下,您的代码不会抛出任何异常。
关于c# - 如何使用XDocument读取csproj文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18951821/
您可以向 .csproj 文件添加注释吗?如果是这样,最好的方法是什么? 最佳答案 注释像往常一样写在 XML 文件中: How to: Write a Simple MSBuild Project
似乎如果我有一个如下所示的 csproj 文件,我最终会定义 BAR 而未定义 FOO。 FOO BAR 是否有“定义附加常量”的语法,以便我可以使用它并最终定义 FOO 和 BAR?
在“旧”世界中,我会定义一个 AssemblyProductAttribute和 AssemblyTrademarkAttribute这将在 Windows 资源管理器的文件属性中显示为“产品名称”和
在“旧”世界中,我会定义一个 AssemblyProductAttribute和 AssemblyTrademarkAttribute这将在 Windows 资源管理器的文件属性中显示为“产品名称”和
我想简化我的 PCL csproj,但我似乎找不到合适的 TargetFrameworks.. 这是我的旧 csproj: Debug AnyCPU {D035A2E6-EF
我正在寻找一种将 .csproj 文件“导入”到另一个 .csproj 文件的方法。 例如下面的场景: 主.csproj: SubMain.csproj 现在最好能以某种方式从我的“SubM
我正在尝试深入研究 VBPROJ 文件的 XML。有谁知道我在哪里可以找到解释结构和属性用法的好资源? 最佳答案 csproj 或 vbproj 文件只不过是 msbuild xml 文件,它们会被
我想创建一个仅包含nuspec文件中指定内容的nuget程序包,但仍从csproj获取版本。为了使用 token ,我必须像这样打包: nuget pack MyProj.csproj 但是当我这样做
我们正在尝试在 windows 1809 上构建一个 iot edge 模块。我们的项目文件夹层次结构如下: ----BaseDir |---ClassLibrary1 |---Cla
我想在 csproj 文件中添加一个带有条件的属性。 条件是:如果网络位置可用,我的属性应具有该值,否则为另一个位置。 有什么提示吗? 谢谢,霍雷亚 最佳答案 您也许可以使用静态方法 System.N
有人可以指出我在 Visual Studio 中的 csproj/vbproj 文件中使用的表达式语言的语法的引用吗?我一直在看到如下用法: ......我试图理解'.Identity'位。 最佳
有没有什么办法可以在 VS 构建时更改输出程序集文件名? 我有两个(四个,包括 Debug/Release 分支)配置,它们的功能有点不同,应该以不同的方式使用,但应该保留在同一个目录中。所以,最好的
我正在学习 C#。 (对不起,我不是英语母语者。) 我正在 dotnet 核心中创建多平台库。 我想用一种方法切换平台。 我尝试了 RuntimeInformation.IsOSPlatform()
在 .csproj 文件中,您可以使用 $(SolutionDir) 等变量。可以通过这种方式找到图书馆。 如何通过 msbuild 构建 .csproj(不提供解决方案路径)?我看不出这种行为有任何
我正在使用 .NET Core 构建跨平台类库。根据为使用 .csproj 文件构建 C# .NET Core 项目的操作系统,我需要将 native 库复制到项目的输出目录。例如,对于 OS X,我
通常 C# 项目有一个与之相关联的 .csproj 文件。那个文件是做什么用的?它包含哪些数据? 最佳答案 基本上,.csproj 文件包含项目中的文件列表,以及对系统程序集的引用等。 有一大堆设置
我正在为 SDK 分发打包示例代码。在分发中,从代码到 SDK 程序集的相对路径与构建机器不同。例如: 分布 csharp/bin/assembly.dll example/ex1/ex1.cspro
我想在整个团队的解决方案中以编程方式管理 VS2008 csproj 文件。我们偶尔会遇到合并问题(在 Hg 中),这仅仅是因为两个开发人员在一个项目中添加了不同的新文件,但它们最终位于 csproj
在 Visual Studio csproj 中,要编译的文件是这样引用的: 在我看来顺序是随机的(至少我看不出顺序原则)。 有几次在修复合并冲突时,我错误地添加了一
我可以在 msbuild 命令中使用任何变量或属性从 .csproj 获取所有项目引用吗? NSwag.exe webapi2swagger /assembly:@(GimmeAllReferenci
我是一名优秀的程序员,十分优秀!