代码之家  ›  专栏  ›  技术社区  ›  walter_dl

如何从中读取/获取PropertyGroup值。在中使用C#的csproj文件。NET Core 2 classlib项目?

  •  7
  • walter_dl  · 技术社区  · 7 年前

    我想得到元素的值 <Location>SourceFiles/ConnectionStrings.json</Location> 那是 <PropertyGroup /> 使用C#。这位于。的csproj文件。NET Core 2 classlib项目。结构如下:

    <PropertyGroup>
      <TargetFramework>netcoreapp2.0</TargetFramework>
      <Location>SharedSettingsProvider.SourceFiles/ConnectionStrings.json</Location>
    </PropertyGroup>
    

    我可以从哪个类使用。NET核心库来实现这一点?(非.NET framework)

    更新1: 我想在应用程序(此.csproj文件构建的)运行时读取该值。部署前后。

    谢谢

    1 回复  |  直到 7 年前
        1
  •  16
  •   Martin Ullrich    7 年前

    正如评论中所讨论的,csproj内容仅控制预定义的构建任务,在运行时不可用。

    但msbuild是灵活的,可以使用其他方法来持久化某些值,使其在运行时可用。

    一种可能的方法是创建自定义程序集属性:

    [System.AttributeUsage(System.AttributeTargets.Assembly, Inherited = false, AllowMultiple = false)]
    sealed class ConfigurationLocationAttribute : System.Attribute
    {
        public string ConfigurationLocation { get; }
        public ConfigurationLocationAttribute(string configurationLocation)
        {
            this.ConfigurationLocation = configurationLocation;
        }
    }
    

    然后可以在csproj文件内部自动生成的部件属性中使用:

    <PropertyGroup>
      <ConfigurationLocation>https://my-config.service/customer2.json</ConfigurationLocation>
    </PropertyGroup>
    <ItemGroup>
      <AssemblyAttribute Include="An.Example.ConfigurationLocationAttribute">
        <_Parameter1>"$(ConfigurationLocation)"</_Parameter1>
      </AssemblyAttribute>
    </ItemGroup>
    

    然后在运行时在代码中使用:

    static void Main(string[] args)
    {
        var configurationLocation = Assembly.GetEntryAssembly()
            .GetCustomAttribute<ConfigurationLocationAttribute>()
            .ConfigurationLocation;
        Console.WriteLine($"Should get config from {configurationLocation}");
    }